Feature #24110 » 16451-find-in-set.patch
class.t3lib_db.php (working copy) | ||
---|---|---|
*/
|
||
function listQuery($field, $value, $table) {
|
||
$command = $this->quoteStr($value, $table);
|
||
$where = '('.$field.' LIKE \'%,'.$command.',%\' OR '.$field.' LIKE \''.$command.',%\' OR '.$field.' LIKE \'%,'.$command.'\' OR '.$field.'=\''.$command.'\')';
|
||
$where = 'FIND_IN_SET(' . $command . ', ' . $field . ')';
|
||
return $where;
|
||
}
|
||
- « Previous
- 1
- 2
- Next »