diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-14 15:11:57 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-14 15:11:57 +0100 |
commit | 6285e57c49bd06ed52ab997f0dc767576b7da126 (patch) | |
tree | 402ffd66fcd32d2847bd2cf476c71b49bf373e2b /index.php | |
parent | 243e13ab598bd3c4c711b8070cfaa048a3243fa3 (diff) | |
download | wallabag-6285e57c49bd06ed52ab997f0dc767576b7da126.tar.gz wallabag-6285e57c49bd06ed52ab997f0dc767576b7da126.tar.zst wallabag-6285e57c49bd06ed52ab997f0dc767576b7da126.zip |
[add] link to empty cache in config screen, #454
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -65,7 +65,9 @@ if (isset($_GET['login'])) { | |||
65 | } elseif (isset($_GET['import'])) { | 65 | } elseif (isset($_GET['import'])) { |
66 | $import = $poche->import($_GET['from']); | 66 | $import = $poche->import($_GET['from']); |
67 | } elseif (isset($_GET['download'])) { | 67 | } elseif (isset($_GET['download'])) { |
68 | Tools::download_db();; | 68 | Tools::download_db(); |
69 | } elseif (isset($_GET['empty-cache'])) { | ||
70 | $poche->emptyCache(); | ||
69 | } elseif (isset($_GET['export'])) { | 71 | } elseif (isset($_GET['export'])) { |
70 | $poche->export(); | 72 | $poche->export(); |
71 | } elseif (isset($_GET['updatetheme'])) { | 73 | } elseif (isset($_GET['updatetheme'])) { |