From 775d4a1ec93d34c320ea6ba68a783d8842a4fb70 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 14 Jun 2010 09:01:00 +0000 Subject: [PATCH] Property filter is no longer case sensitive git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18859 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../plugins/addons/propertyEditor/class_filterProperties.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.30.2