When I do a search in TYPO3 4.5.11 backend (top right) and then click on X-once found in search results, the error message:
# 1310027511: Could not parse where clause
InvalidArgumentException thrown in file
D: \ .... \ cms \ typo3 \ sysext \ dbal \ class.ux_t3lib_db.php line in 1807th
The real problem is that it dbal can not where clause
..... AND () parse
When I insert in class.ux_db_list_extra.php after line 95 if statement:
if(trim($queryPart) =='AND ('){
$queryPart = 'AND ( 1=1';
}
everything works again perfectly.
# 1310027511: Could not parse where clause
InvalidArgumentException thrown in file
D: \ .... \ cms \ typo3 \ sysext \ dbal \ class.ux_t3lib_db.php line in 1807th
The real problem is that it dbal can not where clause
..... AND () parse
When I insert in class.ux_db_list_extra.php after line 95 if statement:
if(trim($queryPart) =='AND ('){
$queryPart = 'AND ( 1=1';
}
everything works again perfectly.