Fixed a bug where the delete batch button pointed to the wrong operation

This commit is contained in:
Martin Kamerbeek 2004-11-30 20:07:05 +00:00
parent 1ab8746c3a
commit 4793dfe1b8

View file

@ -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 = '<a href="'.WebGUI::URL::page('op=deleteSubscriptionBatch'.$ops).'">'.$i18n->get('delete codes').'</a>';
$delete = '<a href="'.WebGUI::URL::page('op=deleteSubscriptionCodeBatch'.$ops).'">'.$i18n->get('delete codes').'</a>';
}
$p = WebGUI::Paginator->new('op=listSubscriptionCodes'.$ops);