Removed redundant space.

Contributed by donvito.
This commit is contained in:
MobiusDevelopment 2021-03-06 09:40:25 +00:00
parent e867feb170
commit a984c97386

View File

@ -137,7 +137,7 @@ $error = "";
$to = $email;
$subject = 'Your recovered Password';
$message = 'Use this password to login '. $password_rnd;
$headers = 'From :'. $admin;
$headers = 'From:'. $admin;
if (mail($to, $subject, $message, $headers)){
$update = "UPDATE `accounts` SET `password`='".$password."' WHERE `login`='".$account."'";
$resultupdate = $conn->query($update);