diff options
Diffstat (limited to 'inc')
-rwxr-xr-x | inc/poche/Routing.class.php | 2 | ||||
-rwxr-xr-x | inc/poche/Tools.class.php | 15 |
2 files changed, 0 insertions, 17 deletions
diff --git a/inc/poche/Routing.class.php b/inc/poche/Routing.class.php index 004bd45a..0b373058 100755 --- a/inc/poche/Routing.class.php +++ b/inc/poche/Routing.class.php | |||
@@ -124,8 +124,6 @@ class Routing | |||
124 | } elseif (isset($_GET['import'])) { | 124 | } elseif (isset($_GET['import'])) { |
125 | $import = $this->wallabag->import(); | 125 | $import = $this->wallabag->import(); |
126 | $tplVars = array_merge($this->vars, $import); | 126 | $tplVars = array_merge($this->vars, $import); |
127 | } elseif (isset($_GET['download'])) { | ||
128 | Tools::downloadDb(); | ||
129 | } elseif (isset($_GET['empty-cache'])) { | 127 | } elseif (isset($_GET['empty-cache'])) { |
130 | Tools::emptyCache(); | 128 | Tools::emptyCache(); |
131 | } elseif (isset($_GET['export'])) { | 129 | } elseif (isset($_GET['export'])) { |
diff --git a/inc/poche/Tools.class.php b/inc/poche/Tools.class.php index 63137d76..55fedac8 100755 --- a/inc/poche/Tools.class.php +++ b/inc/poche/Tools.class.php | |||
@@ -295,21 +295,6 @@ final class Tools | |||
295 | } | 295 | } |
296 | 296 | ||
297 | /** | 297 | /** |
298 | * Download the sqlite database | ||
299 | */ | ||
300 | public static function downloadDb() | ||
301 | { | ||
302 | header('Content-Disposition: attachment; filename="poche.sqlite.gz"'); | ||
303 | self::_status(200); | ||
304 | |||
305 | header('Content-Transfer-Encoding: binary'); | ||
306 | header('Content-Type: application/octet-stream'); | ||
307 | echo gzencode(file_get_contents(STORAGE_SQLITE)); | ||
308 | |||
309 | exit; | ||
310 | } | ||
311 | |||
312 | /** | ||
313 | * Get the content for a given URL (by a call to FullTextFeed) | 298 | * Get the content for a given URL (by a call to FullTextFeed) |
314 | * | 299 | * |
315 | * @param Url $url | 300 | * @param Url $url |