From ebc395a4ae0d0b09f10ed69e9bb9dcee9d34e4d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Peters?= Date: Mon, 26 Feb 2018 21:57:32 +0100 Subject: [PATCH] [Web] Fix update for mailbox --- data/web/inc/functions.mailbox.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/web/inc/functions.mailbox.inc.php b/data/web/inc/functions.mailbox.inc.php index f0d10397..695bde3b 100644 --- a/data/web/inc/functions.mailbox.inc.php +++ b/data/web/inc/functions.mailbox.inc.php @@ -2115,7 +2115,7 @@ function mailbox($_action, $_type, $_data = null, $attr = null) { $password_hashed = hash_password($password); try { $stmt = $pdo->prepare("UPDATE `mailbox` SET - `password` = :password_hashed, + `password` = :password_hashed WHERE `username` = :username"); $stmt->execute(array( ':password_hashed' => $password_hashed,