Seite 1 von 1

Problem when trying to order categories

Verfasst: Mo 02.Mai, 2005 21:23
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

Verfasst: Di 03.Mai, 2005 16:19
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";