| Changing default sort order of showcat.php
One thing I can't find in the 3.32 version is the place to change the default sort of the showcat.php page. In 3.11, it was a simple line of
if ( empty($sort) ) $sortparam = 8;
I tried changing line 201 to:
$sortparam = ( isset($catsortorder) && $catsortorder > 0 ? $catsortorder : 8 );
but that doesn't seem to work. How can I get the default setting to display sorted on number 8? Thanks.
|