mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 14:49:15 +00:00
Merge pull request #1200 from wallabag/fix-relaunch-import
fix restart of import
This commit is contained in:
commit
7106983464
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ class Routing
|
||||||
$pdf->producePDF();
|
$pdf->producePDF();
|
||||||
} elseif (isset($_GET['import'])) {
|
} elseif (isset($_GET['import'])) {
|
||||||
$import = $this->wallabag->import();
|
$import = $this->wallabag->import();
|
||||||
$tplVars = array_merge($this->vars, $import);
|
$this->vars = array_merge($this->vars, $import);
|
||||||
} elseif (isset($_GET['empty-cache'])) {
|
} elseif (isset($_GET['empty-cache'])) {
|
||||||
Tools::emptyCache();
|
Tools::emptyCache();
|
||||||
} elseif (isset($_GET['export'])) {
|
} elseif (isset($_GET['export'])) {
|
||||||
|
|
Loading…
Reference in a new issue