diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/functions_html.inc.php | 2 | ||||
-rw-r--r-- | include/functions_search.inc.php | 2 | ||||
-rw-r--r-- | include/functions_tag.inc.php | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index bd771ba20..8cad4e395 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -463,7 +463,7 @@ function get_tags_content_title() .'" title="' .l10n('display photos linked to this tag') .'">' - .trigger_event('render_tag_name', $page['tags'][$i]['name']) + .trigger_event('render_tag_name', $page['tags'][$i]['name'], $page['tags'][$i]) .'</a>'; if (count($page['tags']) > 2) diff --git a/include/functions_search.inc.php b/include/functions_search.inc.php index aea27ce43..66452459e 100644 --- a/include/functions_search.inc.php +++ b/include/functions_search.inc.php @@ -582,7 +582,7 @@ SELECT t.*, COUNT(image_id) AS counter usort($all_tags, 'tag_alpha_compare'); foreach ( $all_tags as &$tag ) { - $tag['name'] = trigger_event('render_tag_name', $tag['name']); + $tag['name'] = trigger_event('render_tag_name', $tag['name'], $tag); } } diff --git a/include/functions_tag.inc.php b/include/functions_tag.inc.php index d38440010..6e047c502 100644 --- a/include/functions_tag.inc.php +++ b/include/functions_tag.inc.php @@ -89,7 +89,7 @@ SELECT * if ( $counter ) { $row['counter'] = $counter; - $row['name'] = trigger_event('render_tag_name', $row['name']); + $row['name'] = trigger_event('render_tag_name', $row['name'], $row); $tags[] = $row; } } @@ -111,7 +111,7 @@ SELECT * $tags = array(); while ($row = pwg_db_fetch_assoc($result)) { - $row['name'] = trigger_event('render_tag_name', $row['name']); + $row['name'] = trigger_event('render_tag_name', $row['name'], $row); $tags[] = $row; } @@ -277,7 +277,7 @@ SELECT t.*, count(*) AS counter $tags = array(); while($row = pwg_db_fetch_assoc($result)) { - $row['name'] = trigger_event('render_tag_name', $row['name']); + $row['name'] = trigger_event('render_tag_name', $row['name'], $row); $tags[] = $row; } usort($tags, 'tag_alpha_compare'); |