Merge pull request #4304 from tripflex/lostpw-themed

use theme name and title for password reset
This commit is contained in:
Thomas Müller 2013-08-14 12:04:40 -07:00
commit 06670cef8a
1 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ class OC_Core_LostPassword_Controller {
$l = OC_L10N::get('core');
$from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply');
try {
OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud');
$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.');
}