Hi everyone. Over 7 years later, but here's another small modification to make. The vBulletin Podcast RSS generator screws up lastBuildDate by always setting it to the current date (which changes every time someone accesses it), and not the last time it actually changed.
You can fix this by searching for "lastBuildDate" (without the quotes) in external.php, commenting out or deleting that line, and then putting this line right after it:
$xml->add_tag('lastBuildDate', gmdate('D, d M Y H:i:s', $threadcache[0]['dateline']) . ' GMT');
|