aboutsummaryrefslogtreecommitdiffstats
path: root/search_rules.php
diff options
context:
space:
mode:
Diffstat (limited to 'search_rules.php')
-rw-r--r--search_rules.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/search_rules.php b/search_rules.php
index 4217fe2e9..56664a148 100644
--- a/search_rules.php
+++ b/search_rules.php
@@ -138,7 +138,7 @@ SELECT id, uppercats, global_rank
{
while ($row = pwg_db_fetch_assoc($result))
{
- array_push($categories, $row);
+ $categories[] = $row;
}
}
usort($categories, 'global_rank_compare');