Bug #16488 ยป bug_4093_v2.diff
typo3/sysext/indexed_search/pi/class.tx_indexedsearch.php (Arbeitskopie) | ||
---|---|---|
// Prepare search words for regex:
|
||
foreach ($this->sWArr as $d) {
|
||
$swForReg[] = quotemeta($d['sword']);
|
||
$swForReg[] = preg_quote($d['sword'],'/');
|
||
}
|
||
$regExString = '('.implode('|',$swForReg).')';
|
||