We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7ae4ef commit 0ab0644Copy full SHA for 0ab0644
2 files changed
interface/web/index.php
@@ -109,7 +109,9 @@
109
$app->tpl->setVar('base64_logo_txt', $base64_logo_txt);
110
111
// Title
112
-$app->tpl->setVar('company_name', $sys_config['company_name']. ' :: ');
+if (!empty($sys_config['company_name'])) {
113
+ $app->tpl->setVar('company_name', $sys_config['company_name']. ' :: ');
114
+}
115
116
$app->tpl_defaults();
117
$app->tpl->pparse();
interface/web/login/index.php
@@ -341,7 +341,9 @@
341
342
343
344
345
346
347
348
// Custom Login
349
if ($sys_config['custom_login_text'] != '') {
0 commit comments