Unverified Commit 082b1f2b authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(recovery) Fix bad error message when mail sending fails

issue #5997
Showing with 2 additions and 2 deletions
+2 -2
...@@ -349,7 +349,7 @@ class passwordRecovery extends standAlonePage ...@@ -349,7 +349,7 @@ class passwordRecovery extends standAlonePage
if (mail_utf8($this->email_address, FALSE, $this->from_mail, $this->mail_subject, $body)) { if (mail_utf8($this->email_address, FALSE, $this->from_mail, $this->mail_subject, $body)) {
$this->step = 3; $this->step = 3;
} else { } else {
$this->message[] = msgPool::invalid(_("Contact your administrator, there was a problem with mail server")); $this->message[] = _('Contact your administrator, there was a problem with mail server');
} }
$smarty = get_smarty(); $smarty = get_smarty();
...@@ -426,7 +426,7 @@ class passwordRecovery extends standAlonePage ...@@ -426,7 +426,7 @@ class passwordRecovery extends standAlonePage
$this->step = 5; $this->step = 5;
$smarty->assign('changed', TRUE); $smarty->assign('changed', TRUE);
} else { } else {
$this->message[] = msgPool::invalid(_("There was a problem with mail server, confirmation email not sent")); $this->message[] = _('There was a problem with mail server, confirmation email not sent');
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment