The simpler media website CMS
Can you explain this a little more ?
Theme changes
[...]
The sort type and direction parameters to the various next_XXXX functions are deprecated. There have always been issues with these as they do not go into effect until that function call, but the sorting criteria are needed for other items like pagination computations. The objects now have methods for setting the sorttype and sortdirection. These should be used at the beginning of the theme script to insure consistent ordering of the objects.
[...]
Object model sorttype and sortdirection changes
Various functions which have sorttype and sortdirection as parameters have now deprecated these parameters. Instead the type and direction of sorts shoud be set in the object at the start of theme scripts that require special sorts.
If this is not done then there will be inconsistencies with such things as pagination and content display.
Comments
So now you need to set any sorting via the object model before calling any functions, e.g. at the beginning of the theme page. Then all "know what to do" when they are used.
The parameters are still available for transition. However you will get a "deprecated" message if you pass them and have not disabled the message.