Bug #21970 ยป 13257.diff
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) {
|