Skip to content
Snippets Groups Projects

[RTFixed] Dev#176783 task#189903

Merged Henri-Damien LAURENT requested to merge dev#176783_task#189903 into master
Compare and Show latest version
3 files
+ 18
26
Preferences
Compare changes
Files
3
@@ -386,12 +386,13 @@ class AuthController extends ZendAfi_Controller_Action {
$user = Class_Users::findOrFetchFromSigbByLogin($login);
$lostpass = new Class_User_LostPass($user);
$message_mail = $lostpass->send();
$lostpass = $lostpass->send();
if ($lostpass->hasErrors())
$this->view->message = implode('\n',$lostpass->getErrors());
if ($this->_notifyWithPopup($lostpass))
$this->_redirectToReferer();
$this->view->message_mail = $message_mail;
}