summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8017a18)
raw | patch | inline | side by side (parent: 8017a18)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 6 May 2008 08:10:11 +0000 (08:10 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 6 May 2008 08:10:11 +0000 (08:10 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10784 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_gosaSupportDaemon.inc | patch | blob | history |
diff --git a/gosa-core/include/class_gosaSupportDaemon.inc b/gosa-core/include/class_gosaSupportDaemon.inc
index 741598ef31f2406509cc2f7c07e19c90b0140fb7..c99444b1a536acb59460697f648cc20065e6541a 100644 (file)
$attr = "";
foreach($data as $key => $value){
+ $key = strtolower($key);
if(is_array($value)){
foreach($value as $sub_value){
$attr.= "<$key>".strtolower($sub_value)."</$key>\n";
trigger_error("Invalid configuration attribute given '".$key."=".$value."'.");
return($ret);
}
+ $key = strtolower($key);
if(is_array($value)){
foreach($value as $val){
$attrs.= "<$key>$val</$key>\n";
trigger_error("Invalid policy configuration attribute given '".$id."=".$value."'.");
return($ret);
}
+ $id = strtolower($id);
$attrs.= "<$id>$value</$id>\n";
}
trigger_error("Invalid policy configuration attribute given '".$id."=".$value."'.");
return($ret);
}
+ $id = strtolower($id);
$attrs.= "<$id>$value</$id>\n";
}