We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e4e448 commit c5ceae2Copy full SHA for c5ceae2
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