Skip to content
Snippets Groups Projects
Commit d489c029 authored by Marius Burkard's avatar Marius Burkard
Browse files

Merge branch '5864-html-title-password-lost-form' into 'develop'

Load the company name to show in the HTML title tag, fixes #5864

Closes #5864

See merge request ispconfig/ispconfig3!1298
parents 43492122 c5ceae23
No related branches found
No related tags found
Loading
......@@ -179,7 +179,10 @@ $app->tpl->setVar('base64_logo_height', $logo_dimensions[1].'px');
$app->tpl->setVar('base64_logo_txt', $base64_logo_txt);
// Title
$app->tpl->setVar('company_name', $sys_config['company_name']. ' :: ');
$sys_config = $app->getconf->get_global_config('misc');
if (!empty($sys_config['company_name'])) {
$app->tpl->setVar('company_name', $sys_config['company_name']. ' :: ');
}
$app->tpl_defaults();
$app->tpl->pparse();
......
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