Quote:
Originally Posted by GrendelKhan{TSU
Awesome
BUG: I think...
the default sort order doesn't seem to want to change no matter what I set it to. :/ or that could be just mine. 
|
You're right - sorry about that. It will be fixed in 2.0.5 in a few days.
If it's urgent, you can edit local_links.php. Find line 386:
PHP Code:
default:
$sort = $vbulletin->GPC['sort'];
if ($sort == "") {
$sort = iif($linkscat["$viewcatid"]['catsortorder'] == ' ',
iif(isset($links_defaults['default_sort_order']), $links_defaults['default_sort_order'], 'N'),
$linkscat["$viewcatid"]['catsortorder']);
}
and change to
PHP Code:
default:
$sort = $vbulletin->GPC['sort'];
if ($sort == "") {
$sort = iif(trim($linkscat["$viewcatid"]['catsortorder']),
$linkscat["$viewcatid"]['catsortorder'],
iif(isset($links_defaults['default_sort_order']), $links_defaults['default_sort_order'], 'N')
);
}