Hi all, I’m having an issue with an installation of mine, where a client’s podcasts are being ordered via reverse relationships by a custom date field, (they are using the entry date field for other purposes) and all seems to work beautifully, except for anything before October 01, 2001. Those items show up *first* in the list, followed by everything else in the correct order. This is pretty vexing, since they have their *first* podcast/recording in August 2001. Are there any known bugs or causes of behavior that might cause this? Currently the code I have is:
{reverse_related_entries channel="podcasts" orderby="podcast_publish_date" sort="desc"}
{if count == "1"}<h3>Podcasts</h3>
<p><ul>{/if}<br />
<li><a href="http://{url_title_path=podcast}">{title}</a> | Published: {podcast_publish_date format="%F %d, %Y"}</li><br />
{if count == total_results}</ul>{/if}<br />
{/reverse_related_entries}Is there anything I’m missing? Do I need to provide more info? Any help would be *greatly* appreciated!