diff options
author | Thomas Citharel <tcit@tcit.fr> | 2015-01-24 15:09:18 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2015-01-24 15:09:18 +0100 |
commit | 3e1daa4c9016944b444829151334ab87cd3d3dcb (patch) | |
tree | a9613949c3380cc5eb4c26be05466e25315e517f /inc/poche/Routing.class.php | |
parent | e25972f83000bc664c4f3f880ae0a874c6b33f75 (diff) | |
download | wallabag-3e1daa4c9016944b444829151334ab87cd3d3dcb.tar.gz wallabag-3e1daa4c9016944b444829151334ab87cd3d3dcb.tar.zst wallabag-3e1daa4c9016944b444829151334ab87cd3d3dcb.zip |
allow to send confirmation emails when creating a new user
Diffstat (limited to 'inc/poche/Routing.class.php')
-rwxr-xr-x | inc/poche/Routing.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Routing.class.php b/inc/poche/Routing.class.php index a8d00b89..b8cab0ec 100755 --- a/inc/poche/Routing.class.php +++ b/inc/poche/Routing.class.php | |||
@@ -116,7 +116,7 @@ class Routing | |||
116 | // update password | 116 | // update password |
117 | $this->wallabag->updatePassword($_POST['password'], $_POST['password_repeat']); | 117 | $this->wallabag->updatePassword($_POST['password'], $_POST['password_repeat']); |
118 | } elseif (isset($_GET['newuser'])) { | 118 | } elseif (isset($_GET['newuser'])) { |
119 | $this->wallabag->createNewUser($_POST['newusername'], $_POST['password4newuser'], $_POST['newuseremail']); | 119 | $this->wallabag->createNewUser($_POST['newusername'], $_POST['password4newuser'], $_POST['newuseremail'], true); |
120 | } elseif (isset($_GET['deluser'])) { | 120 | } elseif (isset($_GET['deluser'])) { |
121 | $this->wallabag->deleteUser($_POST['password4deletinguser']); | 121 | $this->wallabag->deleteUser($_POST['password4deletinguser']); |
122 | } elseif (isset($_GET['epub'])) { | 122 | } elseif (isset($_GET['epub'])) { |