We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4349212 + c5ceae2 commit d489c02Copy full SHA for d489c02
1 file changed
interface/web/login/password_reset.php
@@ -179,7 +179,10 @@
179
$app->tpl->setVar('base64_logo_txt', $base64_logo_txt);
180
181
// Title
182
-$app->tpl->setVar('company_name', $sys_config['company_name']. ' :: ');
+$sys_config = $app->getconf->get_global_config('misc');
183
+if (!empty($sys_config['company_name'])) {
184
+ $app->tpl->setVar('company_name', $sys_config['company_name']. ' :: ');
185
+}
186
187
$app->tpl_defaults();
188
$app->tpl->pparse();
0 commit comments