summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 795b804)
raw | patch | inline | side by side (parent: 795b804)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 May 2010 10:03:41 +0000 (10:03 +0000) | ||
committer | hickert <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 | patch | blob | history |
diff --git a/gosa-core/include/utils/class_timezone.inc b/gosa-core/include/utils/class_timezone.inc
index 4f11be801ef2087b09a257b562380d0388b1f5ba..516c88936260a091930ddca3417076b137e2decf 100644 (file)
}
/* 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);