aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_tag.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/functions_tag.inc.php')
-rw-r--r--include/functions_tag.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions_tag.inc.php b/include/functions_tag.inc.php
index 17ae996ab..52f01ab88 100644
--- a/include/functions_tag.inc.php
+++ b/include/functions_tag.inc.php
@@ -332,7 +332,7 @@ SELECT *
$tags = array();
while ($row = pwg_db_fetch_assoc($result))
{
- array_push($tags, $row);
+ $tags[] = $row;
}
return $tags;
}