Can anyone provide any more details on the fix identified above for a MySQL5 setup ?
My german isn't too good - and the query near line 370 in my estateagent.php file reads like this:
// get entries for each subcategory
$sc_entries=array();$parent=array();$y=0;
foreach($scats as $s){
$query = "SELECT count(*) FROM #__estateagent"
"\n WHERE cat = $s->id" "\n AND ("
"\n ((publish_up >= '0000-00-00' AND publish_up <= '$today'

AND publish_down >= '$today'

"
"\n OR ((publish_up >= '0000-00-00' AND publish_up <= '$today' ) AND (publish_down = '0000-00-00' OR publish_down >= '$today'

)"
"\n OR (publish_up = '0000-00-00' AND publish_down = '0000-00-00'

"
"\n )"
"\n AND access <= $gid AND publish=1";
Many Thanks.