diff options
author | mistic100 <mistic@piwigo.org> | 2014-01-12 11:24:02 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2014-01-12 11:24:02 +0000 |
commit | 81ac87bc81b912c81eeb64e32701da68626a3e1b (patch) | |
tree | 5393037986970c6a866049a19c350868a943a0a4 /admin/include/functions.php | |
parent | 95dd3b88ec243c12dd3aa91cf09dbfc6b58694ec (diff) |
render_tag_name trigger transmit full tag data as second parameter
git-svn-id: http://piwigo.org/svn/trunk@26649 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/include/functions.php')
-rw-r--r-- | admin/include/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php index f37b609a2..ba6cdf40d 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -2154,7 +2154,7 @@ function get_taglist($query, $only_user_language=true) while ($row = pwg_db_fetch_assoc($result)) { $raw_name = $row['name']; - $name = trigger_event('render_tag_name', $raw_name); + $name = trigger_event('render_tag_name', $raw_name, $row); $taglist[] = array( 'name' => $name, |