Code

Property filter is no longer case sensitive
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 14 Jun 2010 09:01:00 +0000 (09:01 +0000)
committerhickert <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

index 4bb74f0b5759a6f2a6f32e8b4de11d02d003bf37..38db9b1d0f3414adfc6f5c5871926c8a3df03c92 100644 (file)
@@ -33,7 +33,7 @@ class filterCONFIGPROPERTIES {
                 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;
                 }
             }