Skip to content
Snippets Groups Projects
Commit cd465127 authored by Kevin Ditscheid's avatar Kevin Ditscheid
Browse files

[BUGFIX] Only translate template description if LLL: string

parent d6c01e88
No related branches found
No related tags found
1 merge request!13Feature upgrade to9 lts
......@@ -220,7 +220,7 @@ class MailController extends ActionController {
if ($languages[0]['isocode']) {
$templateDescription = $templateDescription[$languages[0]['isocode']];
}
} else {
} elseif(\strpos($templateDescription, 'LLL:') !== FALSE) {
$templateDescription = LocalizationUtility::translate(
$templateDescription, $parameters['selectedExtension']
);
......
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