Merge pull request #7425 from owncloud/issue/7423

Translate string when an error occured while sending a forgot password mail
remotes/origin/ldap_group_count
Thomas Müller 11 years ago
commit d4f15853e8
  1. 2
      core/lostpassword/controller.php

@ -69,7 +69,7 @@ class Controller {
$defaults = new \OC_Defaults();
\OC_Mail::send($email, $_POST['user'], $l->t('%s password reset', array($defaults->getName())), $msg, $from, $defaults->getName());
} catch (Exception $e) {
\OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.');
\OC_Template::printErrorPage( $l->t('A problem has occurred whilst sending the email, please contact your administrator.') );
}
self::displayLostPasswordPage(false, true);
} else {

Loading…
Cancel
Save