From 37b29231e47a0c4458dc1c15d98588f16f07e1e2 Mon Sep 17 00:00:00 2001 From: Marius Cramer <m.cramer@pixcept.de> Date: Thu, 06 Aug 2015 03:18:44 -0400 Subject: [PATCH] - don't set password via remoting if field is empty --- interface/web/index.php | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/interface/web/index.php b/interface/web/index.php index 9838c24..7cdf5bd 100644 --- a/interface/web/index.php +++ b/interface/web/index.php @@ -101,6 +101,9 @@ $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']. ' :: '); + $app->tpl_defaults(); $app->tpl->pparse(); ?> -- Gitblit v1.9.1