Quote by wfzimmerman: the feed does not validate because of an incorrect date element
It does seem to validate now, but the actual problem is somewhere else.
Geeklog is looking for a 'title' element in the feed, but this one only offers 'dc:title' elements.
Quick'n'dirty solution: In lib-common.php, find the piece of code that reads
Text Formatted Code
case 'TITLE':
$RDFtitle .= $data;
break;
Duplicate it and change the 'TITLE' to 'DC:TITLE' on the duplicate. It should then be able to parse both feed with a 'title' as well as those with a 'dc:title' element.
bye, Dirk