Bug fix: passing unchecked user input led to persistent case change
This commit is contained in:
parent
adba63da57
commit
ab724a03f9
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ sub reason :Tab(whatevah) {
|
||||||
|
|
||||||
$cart->add(undef, -$amount, "Given to $benificiary" . $reason);
|
$cart->add(undef, -$amount, "Given to $benificiary" . $reason);
|
||||||
$cart->add($benificiary, +$amount, "Received from \$you" . $reason);
|
$cart->add($benificiary, +$amount, "Received from \$you" . $reason);
|
||||||
$cart->checkout($input) if $user;
|
$cart->checkout($user) if $user;
|
||||||
|
|
||||||
return ACCEPT;
|
return ACCEPT;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue