aboutsummaryrefslogtreecommitdiffstats
path: root/admin/tags.php
diff options
context:
space:
mode:
authormistic100 <mistic@piwigo.org>2012-10-04 14:15:41 +0000
committermistic100 <mistic@piwigo.org>2012-10-04 14:15:41 +0000
commit4cf33a00254a77cba8d052edc431885b653e65d9 (patch)
tree427ca0fb0cb19908a603f02fbd0235ed2a29e43f /admin/tags.php
parentd7df3f0a0cd6a7169ff84411e390527c50b67184 (diff)
Merged revision(s) r18459 from trunk:
bug:2756 feature:2737 on batch manager use "tag" url parameter instead of re-use "cat" git-svn-id: http://piwigo.org/svn/branches/2.4@18460 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/tags.php')
-rw-r--r--admin/tags.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/tags.php b/admin/tags.php
index 87fbf440c..9df94e4df 100644
--- a/admin/tags.php
+++ b/admin/tags.php
@@ -352,7 +352,7 @@ while ($tag = pwg_db_fetch_assoc($result))
$tag['name'] = trigger_event('render_tag_name', $raw_name);
$tag['counter'] = intval(@$tag_counters[ $tag['id'] ]);
$tag['U_VIEW'] = make_index_url(array('tags'=>array($tag)));
- $tag['U_EDIT'] = 'admin.php?page=batch_manager&amp;cat=tag-'.$tag['id'];
+ $tag['U_EDIT'] = 'admin.php?page=batch_manager&amp;tag='.$tag['id'];
$alt_names = trigger_event('get_tag_alt_names', array(), $raw_name);
$alt_names = array_diff( array_unique($alt_names), array($tag['name']) );