Bug #23504 » 15642_trunk.diff
typo3/sysext/em/mod1/class.em_xmlhandler.php (Arbeitskopie) | ||
---|---|---|
if ($search && $exactMatch) {
|
||
$where.= ' AND extkey=' . $GLOBALS['TYPO3_DB']->fullQuoteStr($search, 'cache_extensions');
|
||
} elseif ($search) {
|
||
$quotedSearch = $GLOBALS['TYPO3_DB']->quoteStr(
|
||
$GLOBALS['TYPO3_DB']->escapeStrForLike($search, 'cache_extensions'),
|
||
$quotedSearch = $GLOBALS['TYPO3_DB']->escapeStrForLike(
|
||
$GLOBALS['TYPO3_DB']->quoteStr($search, 'cache_extensions'),
|
||
'cache_extensions'
|
||
);
|
||
$where .= ' AND (extkey LIKE \'%' . $quotedSearch . '%\' OR title LIKE \'%' . $quotedSearch . '%\')';
|
- « Previous
- 1
- 2
- 3
- 4
- Next »