From ab724a03f9c73fc0cf173289bbde0d1fd47eee05 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Mon, 27 May 2019 22:42:48 +0200 Subject: [PATCH] Bug fix: passing unchecked user input led to persistent case change --- plugins/give | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/give b/plugins/give index 3a0f207..66a0503 100755 --- a/plugins/give +++ b/plugins/give @@ -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; }