From 537b8430a2b504175862aab799254d0dc312f2b4 Mon Sep 17 00:00:00 2001 From: rvelices Date: Mon, 20 Jul 2009 05:36:15 +0000 Subject: [PATCH] - 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/trunk@3642 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions_user.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php index 68ca52a7f..3ead0e820 100644 --- a/include/functions_user.inc.php +++ b/include/functions_user.inc.php @@ -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);