diff options
author | rvelices <rv-github@modusoptimus.com> | 2009-02-05 03:10:59 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2009-02-05 03:10:59 +0000 |
commit | 15515695a117b1593589c9dc155b55fe67d3bdee (patch) | |
tree | b829aff277a0b31012527c51effb3429d34cb8d9 | |
parent | b019ad9b5556b96342aa4c271143219261432229 (diff) |
- fix issue on my previous commit
git-svn-id: http://piwigo.org/svn/branches/2.0@3129 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | include/category_default.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/category_default.inc.php b/include/category_default.inc.php index c83d5cd00..025adcc40 100644 --- a/include/category_default.inc.php +++ b/include/category_default.inc.php @@ -47,7 +47,7 @@ SELECT * $result = pwg_query($query); while ($row = mysql_fetch_assoc($result)) { - $row['rank'] = $page['rank_of'][ $row['id'] ]; + $row['rank'] = $rank_of[ $row['id'] ]; array_push($pictures, $row); } |