Quote:
Originally Posted by PtP
Possible bug in 2.06 or me missing something new.
The catagories in the main catagory view are not showing by order I have given them in the "display order"
I just found that /local_links_admin.php?action=admin&set=categories is showing them in correct order though, Am I missing another setting 
|
Confirmed bug, introduced in 2.0.6 in fixing another bug. Order of subcategories should match order of links (by title, date, etc), but a specified displayorder should always trump anything else.
Fix is to edit local_links_include.php, line 519
Code:
function catcmp($a, $b) {
global $holdsort, $holdcat;
switch ($holdsort) {
Before the switch statement, insert these two lines so that the code reads as follows:
Code:
function catcmp($a, $b) {
global $holdsort, $holdcat;
// Display orders always over-ride the rest
if ($holdcat[$a]['displayorder'] < $holdcat[$b]['displayorder']) return(-1);
if ($holdcat[$a]['displayorder'] > $holdcat[$b]['displayorder']) return( 1);
switch ($holdsort) {