nomoney: limit scope for variable
This commit is contained in:
parent
988a161016
commit
bfb2d712e7
1 changed files with 2 additions and 2 deletions
|
@ -18,8 +18,6 @@ sub _derive_plugin($symbol) {
|
|||
return;
|
||||
}
|
||||
|
||||
my %unresolved; # to keep state, keyed per real cart
|
||||
|
||||
sub _inform($unresolved, $username, $skip_print = 0) {
|
||||
call_hooks("beep");
|
||||
|
||||
|
@ -45,6 +43,8 @@ sub _inform($unresolved, $username, $skip_print = 0) {
|
|||
}
|
||||
}
|
||||
|
||||
my %unresolved; # to share state between hooks, keyed per real cart
|
||||
|
||||
sub hook_checkout_prepare($class, $cart, $username, $transaction_id, @) {
|
||||
my $unresolved = $unresolved{$cart} = RevBank::Cart->new;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue