aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Routing.class.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2014-09-16 15:21:12 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2014-09-16 15:21:12 +0200
commit657245dcbdbca323621952d2b6f9e991dd94fa03 (patch)
treef92a44b3f779d7532f5f044d6398dd5d2d60b48e /inc/poche/Routing.class.php
parenta818ff2000c721c6f078c206c3f5214c558a5546 (diff)
parent2b58426b2d4a7f1585d5d7667c0a4fbea4cd29dd (diff)
downloadwallabag-657245dcbdbca323621952d2b6f9e991dd94fa03.tar.gz
wallabag-657245dcbdbca323621952d2b6f9e991dd94fa03.tar.zst
wallabag-657245dcbdbca323621952d2b6f9e991dd94fa03.zip
Merge pull request #771 from tcitworld/refactor
fixed bug for epub export #755 ; also better metadata title
Diffstat (limited to 'inc/poche/Routing.class.php')
-rw-r--r--inc/poche/Routing.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Routing.class.php b/inc/poche/Routing.class.php
index eb4c4d90..2db57d12 100644
--- a/inc/poche/Routing.class.php
+++ b/inc/poche/Routing.class.php
@@ -111,7 +111,7 @@ class Routing
111 } elseif (isset($_GET['deluser'])) { 111 } elseif (isset($_GET['deluser'])) {
112 $this->wallabag->deleteUser($_POST['password4deletinguser']); 112 $this->wallabag->deleteUser($_POST['password4deletinguser']);
113 } elseif (isset($_GET['epub'])) { 113 } elseif (isset($_GET['epub'])) {
114 $epub = new WallabagEpub($this->wallabag, $_GET['method'], $_GET['id'], $_GET['value']); 114 $epub = new WallabagEpub($this->wallabag, $_GET['method'], $_GET['value']);
115 $epub->run(); 115 $epub->run();
116 } elseif (isset($_GET['import'])) { 116 } elseif (isset($_GET['import'])) {
117 $import = $this->wallabag->import(); 117 $import = $this->wallabag->import();