From 7d0224b11c6b9bb4ab8dd3198c44e70a7e298e0a Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 11 May 2010 07:41:36 +0000 Subject: [PATCH] removed defaults from get_cfg_value and added some missing properties. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18318 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/html/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gosa-core/html/index.php b/gosa-core/html/index.php index d55a13ff9..3ce811e33 100644 --- a/gosa-core/html/index.php +++ b/gosa-core/html/index.php @@ -37,7 +37,7 @@ function displayLogin() error_reporting(E_ALL | E_STRICT); /* Check theme compatibility */ - $theme= $config->get_cfg_value("core",'theme', 'default'); + $theme= $config->get_cfg_value("core",'theme'); if (file_exists("$BASE_DIR/ihtml/themes/$theme/blacklist")) { $blocks= file("$BASE_DIR/ihtml/themes/$theme/blacklist"); foreach ($blocks as $block) { @@ -171,7 +171,7 @@ if ($config->get_cfg_value("core","sendCompressedOutput") != "") { } /* Set template compile directory */ -$smarty->compile_dir= $config->get_cfg_value("core","templateCompileDirectory", '/var/spool/gosa'); +$smarty->compile_dir= $config->get_cfg_value("core","templateCompileDirectory"); $smarty->error_unassigned= true; /* Check for compile directory */ -- 2.30.2