Code

Added property class to get_cfg_requests
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 5 May 2010 10:03:41 +0000 (10:03 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 5 May 2010 10:03:41 +0000 (10:03 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18106 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/utils/class_timezone.inc

index 4f11be801ef2087b09a257b562380d0388b1f5ba..516c88936260a091930ddca3417076b137e2decf 100644 (file)
@@ -38,10 +38,10 @@ class timezone {
     }
 
     /* Is there a timezone configured in the gosa configuration (gosa.conf) */
-    if ($config->get_cfg_value("timezone") != ""){
+    if ($config->get_cfg_value("core","timezone") != ""){
 
       /* Get zonename */
-      $tz = $config->get_cfg_value("timezone");
+      $tz = $config->get_cfg_value("core","timezone");
 
       if(!@date_default_timezone_set($tz)){
         msg_dialog::display(_("Configuration error"), sprintf(_("The configured timezone %s is not valid!"), bold($tz)), ERROR_DIALOG);