summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ee0244e)
raw | patch | inline | side by side (parent: ee0244e)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 11 May 2010 07:41:50 +0000 (07:41 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 11 May 2010 07:41:50 +0000 (07:41 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18324 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/functions.inc | patch | blob | history |
index 76dd67aa57a00ac829d4a1824be012eebd02fd8d..1e86262c188944812ca5d06c28c1e1642224c707 100644 (file)
/* Set theme */
if (isset ($config)){
- $theme= $config->get_cfg_value("core","theme", "default");
+ $theme= $config->get_cfg_value("core","theme");
} else {
$theme= "default";
}
{
global $config;
- switch ($config->get_cfg_value("core","idAllocationMethod", "traditional")){
+ switch ($config->get_cfg_value("core","idAllocationMethod")){
case "pool":
return get_next_id_pool($attrib);
case "traditional":
// Get theme
if (isset ($config)){
- $theme= $config->get_cfg_value("core","theme", "default");
+ $theme= $config->get_cfg_value("core","theme");
} else {
# For debuging - avoid that there's no theme set
die("config not set!");