Skip to content
Snippets Groups Projects
Commit 8edc0f21 authored by Myles McNamara's avatar Myles McNamara
Browse files

use theme name and title for password reset

password reset email uses owncloud, updated to use theme settings
parent afc8ee72
No related branches found
No related tags found
No related merge requests found
......@@ -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($defaults->getTitle(); . ' password reset'), $msg, $from, $defaults->getName());
} catch (Exception $e) {
OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment