summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/bp.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/bp.pl b/bin/bp.pl
index 04b6ba78..337b7c5a 100755
--- a/bin/bp.pl
+++ b/bin/bp.pl
@@ -510,9 +510,9 @@ sub list_spool {
# type=submit $locale->text('Print')
# type=submit $locale->text('Remove')
- %button = ('Select all' => { ndx => 2, key => 'A', value => $locale->text('Select all') },
- 'Print' => { ndx => 3, key => 'P', value => $locale->text('Print') },
- 'Remove' => { ndx => 4, key => 'R', value => $locale->text('Remove') },
+ %button = ('select_all' => { ndx => 2, key => 'A', value => $locale->text('Select all') },
+ 'print' => { ndx => 3, key => 'P', value => $locale->text('Print') },
+ 'remove' => { ndx => 4, key => 'R', value => $locale->text('Remove') },
);
for (sort { $button{$a}->{ndx} <=> $button{$b}->{ndx} } keys %button) { $form->print_button(\%button, $_) }