Problem when trying to order categories

Enthält archivierte Beiträge von Hotschi's Board zum Download MOD.
Posten ist hier nicht möglich, bitte das Supportforum dafür verwenden!
Gesperrt
Anonymous

Problem when trying to order categories

Beitrag von Anonymous »

It doesn't matter if I move up or down any category, when I access the downloads page they aren't sorted. Does any of you know how to fix it?

Thanks in advance
Anonymous

Beitrag von Anonymous »

Nevermind, I already fixed it, there is a small bug in the admin_dl_cat.php file in line 249...

Code: Alles auswählen

# 
#-----[ FIND ]------------------------------------------ 
# 
$sql = "SELECT id, cat_name FROM " . DL_CAT_TABLE;

# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 
$sql = "SELECT * FROM " . DL_CAT_TABLE . " ORDER by sort";
Gesperrt