diff options
author | tcit <tcit@tcit.fr> | 2014-04-24 03:04:02 +0200 |
---|---|---|
committer | tcit <tcit@tcit.fr> | 2014-04-24 03:04:02 +0200 |
commit | 87090d8ae7582708d20f3c09fb37d780af860bcd (patch) | |
tree | a12a6cc1ad396606e7370474f5aec1fe6bb9acd7 /index.php | |
parent | 8af31ae0f789f890517da0dbb13faa615638449b (diff) | |
download | wallabag-87090d8ae7582708d20f3c09fb37d780af860bcd.tar.gz wallabag-87090d8ae7582708d20f3c09fb37d780af860bcd.tar.zst wallabag-87090d8ae7582708d20f3c09fb37d780af860bcd.zip |
Added epub export function
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -70,6 +70,8 @@ if (isset($_GET['login'])) { | |||
70 | $poche->createNewUser(); | 70 | $poche->createNewUser(); |
71 | } elseif (isset($_GET['deluser'])) { | 71 | } elseif (isset($_GET['deluser'])) { |
72 | $poche->deleteUser(); | 72 | $poche->deleteUser(); |
73 | } elseif (isset($_GET['epub'])) { | ||
74 | $poche->createEpub(); | ||
73 | } elseif (isset($_GET['import'])) { | 75 | } elseif (isset($_GET['import'])) { |
74 | $import = $poche->import(); | 76 | $import = $poche->import(); |
75 | $tpl_vars = array_merge($tpl_vars, $import); | 77 | $tpl_vars = array_merge($tpl_vars, $import); |