We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df2e3eb commit e7fb606Copy full SHA for e7fb606
1 file changed
lib/Routes/Account.php
@@ -71,7 +71,7 @@ public static function respondToAccountNew() {
71
header("HTTP/1.1 400 Bad Request");
72
exit();
73
}
74
- if (!$_POST['password'] === $_POST['repeat_password']) {
+ if ($_POST['password'] !== $_POST['repeat_password']) {
75
error_log("Password repeat does not match");
76
77
0 commit comments