diff options
author | plegall <plg@piwigo.org> | 2014-02-06 13:03:29 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2014-02-06 13:03:29 +0000 |
commit | 548494a2b710a009beb985f67074a3c5a6f423bb (patch) | |
tree | aa23dcddf07e35733d21048b46319a9a5847ed98 /admin/history.php | |
parent | d98c5912340ad41705543d9e26e7e5268b706c93 (diff) |
bug 3042 fixed: apply render_element_description on photo label in history search results
git-svn-id: http://piwigo.org/svn/branches/2.6@27239 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/history.php')
-rw-r--r-- | admin/history.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/history.php b/admin/history.php index 8a2e07926..5c1aa4326 100644 --- a/admin/history.php +++ b/admin/history.php @@ -319,7 +319,7 @@ SELECT $result = pwg_query($query); while ($row = pwg_db_fetch_assoc($result)) { - $label_of_image[ $row['id'] ] = $row['label']; + $label_of_image[ $row['id'] ] = trigger_event('render_element_description', $row['label']); if (isset($row['filesize'])) { |