diff options
author | rvelices <rv-github@modusoptimus.com> | 2013-03-28 21:38:36 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2013-03-28 21:38:36 +0000 |
commit | f6d6f66d79b72cb2a3a63c826b814739cd0c6f2e (patch) | |
tree | 67aa776586cafc215095c8c7cbdcda99805366ab /admin | |
parent | bee0027180a62976344e73bd87161cb6874d87d4 (diff) |
tag names in admin history search were not being displayed using rander_tag_name event
git-svn-id: http://piwigo.org/svn/trunk@21894 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin')
-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 76db53c59..0412113f5 100644 --- a/admin/history.php +++ b/admin/history.php @@ -396,7 +396,7 @@ SELECT { $tags_string = preg_replace( '/(\d+)/e', - 'isset($name_of_tag["$1"]) ? $name_of_tag["$1"] : "$1"', + 'isset($name_of_tag["$1"]) ? trigger_event("render_tag_name", $name_of_tag["$1"]) : "$1"', str_replace( ',', ', ', |