From 4ae3b94bce6b2f26002c1a50247a01ab4cf2219a Mon Sep 17 00:00:00 2001
From: Till Brehm <tbrehm@ispconfig.org>
Date: Fri, 22 Apr 2016 05:27:43 -0400
Subject: [PATCH] Merge branch 'master' into 'stable-3.1'
---
interface/web/index.php | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/interface/web/index.php b/interface/web/index.php
index c8d836d..4a21032 100644
--- a/interface/web/index.php
+++ b/interface/web/index.php
@@ -109,7 +109,9 @@
$app->tpl->setVar('base64_logo_txt', $base64_logo_txt);
// Title
-$app->tpl->setVar('company_name', $sys_config['company_name']. ' :: ');
+if (!empty($sys_config['company_name'])) {
+ $app->tpl->setVar('company_name', $sys_config['company_name']. ' :: ');
+}
$app->tpl_defaults();
$app->tpl->pparse();
--
Gitblit v1.9.1