aboutsummaryrefslogtreecommitdiffstats
path: root/admin/tags.php
diff options
context:
space:
mode:
authormistic100 <mistic@piwigo.org>2012-10-04 14:14:25 +0000
committermistic100 <mistic@piwigo.org>2012-10-04 14:14:25 +0000
commitb5f020ee66b13bce8275a4d64faf8710c362a6d1 (patch)
tree3928f6a7bf9aec89d28dc8c6d1bc47e3ed259d77 /admin/tags.php
parent2a9e479384a572f248b29924f1af546c5e40a344 (diff)
bug:2756 feature:2737 on batch manager use "tag" url parameter instead of re-use "cat"
git-svn-id: http://piwigo.org/svn/trunk@18459 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 cfb855aa7..2fdfb4b04 100644
--- a/admin/tags.php
+++ b/admin/tags.php
@@ -461,7 +461,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']) );