summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: aa63ce0)
raw | patch | inline | side by side (parent: aa63ce0)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 May 2010 10:02:32 +0000 (10:02 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 May 2010 10:02:32 +0000 (10:02 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18101 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/html/main.php | patch | blob | history |
index ad2f1f07d685863810870bc3ce656e73c81ba0bd..af771cdf42c0e4a0f413081cd6b2ad74f96d3f51 100644 (file)
--- a/gosa-core/html/main.php
+++ b/gosa-core/html/main.php
$config->configRegistry->reload();
/* Enable compressed output */
-if ($config->get_cfg_value("sendCompressedOutput") == "true"){
+if ($config->get_cfg_value("core","sendCompressedOutput") == "true"){
ob_start("ob_gzhandler");
}
}else{
/* check GOsa.conf for defined session lifetime */
- $max_life= $config->get_cfg_value("sessionLifetime", 60*60*2);
+ $max_life= $config->get_cfg_value("core","sessionLifetime", 60*60*2);
/* get time difference between last page reload */
$request_time = (time()- session::global_get('_LAST_PAGE_REQUEST'));
@DEBUG (DEBUG_CONFIG, __LINE__, __FUNCTION__, __FILE__, $config->data, "config");
/* Set template compile directory */
-$smarty->compile_dir= $config->get_cfg_value("templateCompileDirectory", '/var/spool/gosa');
+$smarty->compile_dir= $config->get_cfg_value("core","templateCompileDirectory", '/var/spool/gosa');
$smarty->error_unassigned= true;
/* Set default */
$plist= session::global_get('plist');
/* Check for register globals */
-if (isset($global_check) && $config->get_cfg_value("forceglobals") == "true"){
+if (isset($global_check) && $config->get_cfg_value("core","forceglobals") == "true"){
msg_dialog::display(
_("PHP configuration"),
_("FATAL: Register globals is active. Please fix this in order to continue."),
$smarty->assign ("menu", $plist->gen_menu());
$smarty->assign ("plug", "$plug");
-$smarty->assign("iePngWorkaround", $config->get_cfg_value("iePngWorkaround","false" ) == "true");
+$smarty->assign("iePngWorkaround", $config->get_cfg_value("core","iePngWorkaround","false" ) == "true");
/* React on clicks */
}
/* check if we are using account expiration */
-if ($config->get_cfg_value("handleExpiredAccounts") == "true"){
+if ($config->get_cfg_value("core","handleExpiredAccounts") == "true"){
$expired= ldap_expired_account($config, $ui->dn, $ui->username);
if ($expired == 2){
}
/* Save filters? */
-if($config->get_cfg_value("storeFilterSettings") == "true"){
+if($config->get_cfg_value("core","storeFilterSettings") == "true"){
$cookie_vars = array("MultiDialogFilters","CurrentMainBase");
foreach($cookie_vars as $var){
if(session::global_is_set($var)){