diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-05-19 21:11:19 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-05-19 21:11:19 +0200 |
commit | 2c8394027020a297ea435d36c30b4c63981cf473 (patch) | |
tree | b80176cee6a8586fca9ff26b5361ced53ffa4e91 | |
parent | 251fa4af943989285f853cdb1ff6d5c1be58a13f (diff) | |
download | wallabag-2c8394027020a297ea435d36c30b4c63981cf473.tar.gz wallabag-2c8394027020a297ea435d36c30b4c63981cf473.tar.zst wallabag-2c8394027020a297ea435d36c30b4c63981cf473.zip |
fix restart of import
-rwxr-xr-x | inc/poche/Routing.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Routing.class.php b/inc/poche/Routing.class.php index 138da48d..33a81435 100755 --- a/inc/poche/Routing.class.php +++ b/inc/poche/Routing.class.php | |||
@@ -141,7 +141,7 @@ class Routing | |||
141 | $pdf->producePDF(); | 141 | $pdf->producePDF(); |
142 | } elseif (isset($_GET['import'])) { | 142 | } elseif (isset($_GET['import'])) { |
143 | $import = $this->wallabag->import(); | 143 | $import = $this->wallabag->import(); |
144 | $tplVars = array_merge($this->vars, $import); | 144 | $this->vars = array_merge($this->vars, $import); |
145 | } elseif (isset($_GET['empty-cache'])) { | 145 | } elseif (isset($_GET['empty-cache'])) { |
146 | Tools::emptyCache(); | 146 | Tools::emptyCache(); |
147 | } elseif (isset($_GET['export'])) { | 147 | } elseif (isset($_GET['export'])) { |