aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Routing.class.php
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2015-01-24 14:35:03 +0100
committerThomas Citharel <tcit@tcit.fr>2015-01-24 14:35:03 +0100
commita3a9e75e625b78de371dad2d319ee3a84b7a75c2 (patch)
tree48fb1c0658a0bba2b36460585c0b7c53e1dd2754 /inc/poche/Routing.class.php
parentcdde19d6096c85a3ed9b9399482bcc04bb79583c (diff)
downloadwallabag-a3a9e75e625b78de371dad2d319ee3a84b7a75c2.tar.gz
wallabag-a3a9e75e625b78de371dad2d319ee3a84b7a75c2.tar.zst
wallabag-a3a9e75e625b78de371dad2d319ee3a84b7a75c2.zip
correct a bug when email was not sended when creating a new user
Diffstat (limited to 'inc/poche/Routing.class.php')
-rwxr-xr-xinc/poche/Routing.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Routing.class.php b/inc/poche/Routing.class.php
index be06a433..a8d00b89 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']); 119 $this->wallabag->createNewUser($_POST['newusername'], $_POST['password4newuser'], $_POST['newuseremail']);
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'])) {