Index: class.ux_localrecordlist.php =================================================================== --- class.ux_localrecordlist.php (revision 30260) +++ class.ux_localrecordlist.php (working copy) @@ -67,7 +67,7 @@ // 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']=='none' || ($info['config']['type']=='input' && !ereg('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; }