Bug #17329 ยป 5676_01.diff
typo3/class.db_list.inc | ||
---|---|---|
// Traverse the configured columns and add all columns that can be searched:
|
||
foreach($TCA[$table]['columns'] as $fieldName => $info) {
|
||
if ($info['config']['type']=='text' || ($info['config']['type']=='input' && !preg_match('/date|time|int/',$info['config']['eval']))) {
|
||
if ($info['config']['type']=='text' || $info['config']['type']=='none' || ($info['config']['type']=='input' && !preg_match('/date|time|int/',$info['config']['eval']))) {
|
||
$sfields[]=$fieldName;
|
||
}
|
||
}
|