Just upgraded from 3.2 to 3.33. Everything thankfully went well. The only problem that we're having so far is that one sort_order tag seems not to be working.
We have dynamically generated pages for our authors using smarty, and it pulls a specific image associated with the author, than the oldest post by the author (which is the bio) and than a bunch of their current entries.
Everything is working great, except that the code that used to pull the oldest entry (the bio) isn't working anymore. It's showing the very last entry posted by the author instead of the first.
Like I said, we were using sort_order to control this, set to ascend. This is the exact code for the portion that has stopped working:
CODE
<MTEntries author="`$smarty.request.author`" sort_order="ascend" lastn="1">
I've tried rearranging the order of the tags, but nothing changed. Any suggestions?
To sum it up, we just need the oldest post by the author input by smarty there.