summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d9dbdcb)
raw | patch | inline | side by side (parent: d9dbdcb)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 14 Jun 2010 09:01:00 +0000 (09:01 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 14 Jun 2010 09:01:00 +0000 (09:01 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18859 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/addons/propertyEditor/class_filterProperties.inc | patch | blob | history |
diff --git a/gosa-core/plugins/addons/propertyEditor/class_filterProperties.inc b/gosa-core/plugins/addons/propertyEditor/class_filterProperties.inc
index 4bb74f0b5759a6f2a6f32e8b4de11d02d003bf37..38db9b1d0f3414adfc6f5c5871926c8a3df03c92 100644 (file)
list($name,$value) = preg_split("/=/",$test);
$value =preg_replace("/\*/",'',$value);
if(empty($value)) $value='.*';
- if(!isset($entry[$name][0]) || !preg_match("/{$value}/",$entry[$name][0])){
+ if(!isset($entry[$name][0]) || !preg_match("/{$value}/i",$entry[$name][0])){
$found = false;
}
}