aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_tag.inc.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/functions_tag.inc.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/functions_tag.inc.php b/include/functions_tag.inc.php
index 76931710f..028fd766c 100644
--- a/include/functions_tag.inc.php
+++ b/include/functions_tag.inc.php
@@ -68,6 +68,7 @@ SELECT *
if ( $counter )
{
$row['counter'] = $counter;
+ $row['name'] = trigger_event('render_tag_name', $row['name']);
array_push($tags, $row);
}
}
@@ -89,6 +90,7 @@ SELECT *
$tags = array();
while ($row = pwg_db_fetch_assoc($result))
{
+ $row['name'] = trigger_event('render_tag_name', $row['name']);
array_push($tags, $row);
}
@@ -238,6 +240,7 @@ SELECT t.*, count(*) AS counter
$tags = array();
while($row = pwg_db_fetch_assoc($result))
{
+ $row['name'] = trigger_event('render_tag_name', $row['name']);
array_push($tags, $row);
}
usort($tags, 'tag_alpha_compare');