Index: typo3/sysext/em/classes/connection/class.tx_em_connection_extdirectserver.php =================================================================== --- typo3/sysext/em/classes/connection/class.tx_em_connection_extdirectserver.php (revision 10641) +++ typo3/sysext/em/classes/connection/class.tx_em_connection_extdirectserver.php (revision ) @@ -1460,10 +1460,10 @@ switch ($value['data']['type']) { case 'list': if ($value['field'] === 'statevalue') { - $where .= ' AND state IN(' . htmlspecialchars($value['data']['value']) . ')'; + $where .= ' AND cache_extensions.state IN(' . htmlspecialchars($value['data']['value']) . ')'; } - if ($value['field'] === 'categoryvalue') { - $where .= ' AND category IN(' . htmlspecialchars($value['data']['value']) . ')'; + if ($value['field'] === 'category') { + $where .= ' AND cache_extensions.category IN(' . htmlspecialchars($value['data']['value']) . ')'; } break; default: @@ -1471,7 +1471,7 @@ $GLOBALS['TYPO3_DB']->quoteStr($value['data']['value'], 'cache_extensions'), 'cache_extensions' ); - $where .= ' AND ' . htmlspecialchars($value['field']) . ' LIKE "%' . $quotedSearch . '%"'; + $where .= ' AND cache_extensions.' . htmlspecialchars($value['field']) . ' LIKE "%' . $quotedSearch . '%"'; } } }