summaryrefslogtreecommitdiff
path: root/includes/controller
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2017-07-20 01:03:59 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2017-07-20 01:03:59 +0200
commitb7ebb05b8e71b391b6b029fceb5a2d00ff27004c (patch)
tree16c0da4cd2d9c6c10f5d5e02c1b02bd0986636c2 /includes/controller
parentec45216899b192789c2fd88f6dc057937f5927cc (diff)
Passwords should be posted
Diffstat (limited to 'includes/controller')
-rw-r--r--includes/controller/users_controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/controller/users_controller.php b/includes/controller/users_controller.php
index 96e2c81b..b747cc83 100644
--- a/includes/controller/users_controller.php
+++ b/includes/controller/users_controller.php
@@ -68,7 +68,7 @@ function user_delete_controller()
if (
!(
$request->has('password')
- && verify_password($request->input('password'), $user['Passwort'], $user['UID'])
+ && verify_password($request->post('password'), $user['Passwort'], $user['UID'])
)
) {
$valid = false;