From: hickert Date: Mon, 14 Jun 2010 09:01:00 +0000 (+0000) Subject: Property filter is no longer case sensitive X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=775d4a1ec93d34c320ea6ba68a783d8842a4fb70;p=gosa.git Property filter is no longer case sensitive git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18859 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/plugins/addons/propertyEditor/class_filterProperties.inc b/gosa-core/plugins/addons/propertyEditor/class_filterProperties.inc index 4bb74f0b5..38db9b1d0 100644 --- a/gosa-core/plugins/addons/propertyEditor/class_filterProperties.inc +++ b/gosa-core/plugins/addons/propertyEditor/class_filterProperties.inc @@ -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; } }