diff options
author | tcit <tcit@tcit.fr> | 2014-04-23 10:29:53 +0200 |
---|---|---|
committer | tcit <tcit@tcit.fr> | 2014-04-23 10:29:53 +0200 |
commit | 4d99bae893eb47505f8ff6976917ef3af363ff5b (patch) | |
tree | 79542323f751ce4562867b421a05aa6715c7efc8 /index.php | |
parent | 847f57686e3e129b63c40bd2b49404b74ec85b27 (diff) | |
download | wallabag-4d99bae893eb47505f8ff6976917ef3af363ff5b.tar.gz wallabag-4d99bae893eb47505f8ff6976917ef3af363ff5b.tar.zst wallabag-4d99bae893eb47505f8ff6976917ef3af363ff5b.zip |
Fixed Multi-user system
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -66,6 +66,10 @@ if (isset($_GET['login'])) { | |||
66 | } elseif (isset($_GET['config'])) { | 66 | } elseif (isset($_GET['config'])) { |
67 | # Update password | 67 | # Update password |
68 | $poche->updatePassword(); | 68 | $poche->updatePassword(); |
69 | } elseif (isset($_GET['newuser'])) { | ||
70 | $poche->createNewUser(); | ||
71 | } elseif (isset($_GET['deluser'])) { | ||
72 | $poche->deleteUser(); | ||
69 | } elseif (isset($_GET['import'])) { | 73 | } elseif (isset($_GET['import'])) { |
70 | $import = $poche->import(); | 74 | $import = $poche->import(); |
71 | $tpl_vars = array_merge($tpl_vars, $import); | 75 | $tpl_vars = array_merge($tpl_vars, $import); |