diff options
author | mistic100 <mistic@piwigo.org> | 2011-06-22 16:38:58 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-06-22 16:38:58 +0000 |
commit | 99d78adde75e434b7139a4288aed5fcdfd2d2990 (patch) | |
tree | 6de364cd2226f38f7ac3e7cee63eac8e8b3a87f8 /admin/tags.php | |
parent | 029688227b8c004ce660e06c61330c125f8b1c21 (diff) |
feature:2322 display all localisations as independant tags in TokenInput
git-svn-id: http://piwigo.org/svn/trunk@11487 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/tags.php')
-rw-r--r-- | admin/tags.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/tags.php b/admin/tags.php index 8cc997f60..67cc9bf3c 100644 --- a/admin/tags.php +++ b/admin/tags.php @@ -221,7 +221,7 @@ $orphan_tags = get_orphan_tags(); $orphan_tag_names = array(); foreach ($orphan_tags as $tag) { - array_push($orphan_tag_names, $tag['name']); + array_push($orphan_tag_names, trigger_event('render_tag_name', $tag['name'])); } if (count($orphan_tag_names) > 0) |