summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9daa665)
raw | patch | inline | side by side (parent: 9daa665)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 22 Jun 2007 10:56:56 +0000 (10:56 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 22 Jun 2007 10:56:56 +0000 (10:56 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@6664 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/fai/class_faiPackageEntry.inc | patch | blob | history |
diff --git a/plugins/admin/fai/class_faiPackageEntry.inc b/plugins/admin/fai/class_faiPackageEntry.inc
index a8c78aeb39310843101f8bf0606c40f84ca6aab6..ce2b6e98a361189bb65abbb1fd434a0ac6a66684 100644 (file)
@@ -118,14 +118,17 @@ $CHKS = "<input type='hidden' value='chkchange' name='chkchange'><table summary=
}
}
+ /* Prepare search filter */
+ $search_str = preg_replace("/\\\\\*/",".*",normalizePreg($this->searchStrPKG));
+
$cnt = 0;
foreach($pkgs as $pkg){
if($cnt > 200) {
print_red(sprintf(_("Your specified search string '%s' returned too many results. Only the first 200 entries are shown, to keep the memory usage low."),$this->searchStrPKG));
break;
}
- if((preg_match("/^".str_replace("*",".*",$this->searchStrPKG)."/i",$pkg[0]))||
- (preg_match("/^".str_replace("*",".*",$this->searchStrPKG)."/i",$pkg[3]))){
+ if((preg_match("/^".$search_str."/i",$pkg[0]))||
+ (preg_match("/^".$search_str."/i",$pkg[3]))){
if($this->categories[$pkg[2]]){
if(in_array($pkg[0],$this->selected)){
$check = " checked ";