Merged marijn

This commit is contained in:
Joey Lai
2017-01-25 15:53:44 +01:00
parent 0b035c0583
commit ded314f4d6
2 changed files with 4 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ function sendPasswordRecovery(string $email) {
WHERE
`email` = :email
");
$stmt->bindParm("email", $email);
$stmt->bindParam(":email", $email);
$stmt->execute();
if (!$stmt->rowCount()) {
// TODO: Just stop.