From 4793dfe1b8191fb348eac777cd97406a26f58762 Mon Sep 17 00:00:00 2001 From: Martin Kamerbeek Date: Tue, 30 Nov 2004 20:07:05 +0000 Subject: [PATCH] Fixed a bug where the delete batch button pointed to the wrong operation --- lib/WebGUI/Operation/Subscription.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Operation/Subscription.pm b/lib/WebGUI/Operation/Subscription.pm index 60f41f6f3..cc6c6d39e 100644 --- a/lib/WebGUI/Operation/Subscription.pm +++ b/lib/WebGUI/Operation/Subscription.pm @@ -301,7 +301,7 @@ sub www_listSubscriptionCodes { } elsif ($session{form}{selection} eq 'b') { $where = " and t1.batchId=".quote($session{form}{bid}); $ops = '&bid='.$session{form}{bid}.'&selection=b'; - $delete = ''.$i18n->get('delete codes').''; + $delete = ''.$i18n->get('delete codes').''; } $p = WebGUI::Paginator->new('op=listSubscriptionCodes'.$ops);