Project

General

Profile

Bug #21970 ยป 13257.diff

Administrator Admin, 2010-01-30 13:49

View differences:

t3lib/class.t3lib_arraybrowser.php (Arbeitskopie)
if ($this->regexMode) {
if (preg_match('/'.$searchString.'/',$keyArr[$key]) || ($this->searchKeysToo && preg_match('/'.$searchString.'/',$key))) { $this->searchKeys[$depth]=1; }
} else {
if (stristr($keyArr[$key],$searchString) || ($this->searchKeysToo && stristr($key,$searchString))) { $this->searchKeys[$depth]=1; }
if ((!$deeper && stristr($keyArr[$key], $searchString)) || ($this->searchKeysToo && stristr($key, $searchString))) {
$this->searchKeys[$depth]=1;
}
}
if ($deeper) {
    (1-1/1)