aboutsummaryrefslogtreecommitdiffstats
path: root/admin/history.php
diff options
context:
space:
mode:
authormistic100 <mistic@piwigo.org>2014-01-12 11:24:02 +0000
committermistic100 <mistic@piwigo.org>2014-01-12 11:24:02 +0000
commit81ac87bc81b912c81eeb64e32701da68626a3e1b (patch)
tree5393037986970c6a866049a19c350868a943a0a4 /admin/history.php
parent95dd3b88ec243c12dd3aa91cf09dbfc6b58694ec (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/history.php')
-rw-r--r--admin/history.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/history.php b/admin/history.php
index f81c7f4cb..8307d5e32 100644
--- a/admin/history.php
+++ b/admin/history.php
@@ -343,7 +343,7 @@ SELECT
$result = pwg_query($query);
while ($row=pwg_db_fetch_assoc($result))
{
- $name_of_tag[ $row['id'] ] = '<a href="'.make_index_url( array('tags'=>array($row))).'">'.trigger_event("render_tag_name", $row['name']).'</a>';
+ $name_of_tag[ $row['id'] ] = '<a href="'.make_index_url( array('tags'=>array($row))).'">'.trigger_event("render_tag_name", $row['name'], $row).'</a>';
}
}