- bug fix (use uasort for computed categories instead of usort) - I think this is an old bug and somehow it worked before)

git-svn-id: http://piwigo.org/svn/branches/2.0@3643 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2009-07-20 05:37:37 +00:00
parent 30f0e85768
commit d8f1c262de
+1 -1
View File
@@ -656,7 +656,7 @@ FROM '.CATEGORIES_TABLE.' as c
$cats += array($row['cat_id'] => $row);
}
usort($cats, 'global_rank_compare');
uasort($cats, 'global_rank_compare');
compute_categories_data($cats);