Bug fix: passing unchecked user input led to persistent case change

This commit is contained in:
Juerd Waalboer 2019-05-27 22:42:48 +02:00
parent adba63da57
commit ab724a03f9

View file

@ -43,7 +43,7 @@ sub reason :Tab(whatevah) {
$cart->add(undef, -$amount, "Given to $benificiary" . $reason);
$cart->add($benificiary, +$amount, "Received from \$you" . $reason);
$cart->checkout($input) if $user;
$cart->checkout($user) if $user;
return ACCEPT;
}