From 8254a68b81e4da1b813924b52cba1eadfb417d0c Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Sat, 5 Oct 2013 15:06:04 -0400 Subject: [PATCH] Fix some typos in CircCommon.pm. Signed-off-by: Jason Stephenson --- Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/CircCommon.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/CircCommon.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/CircCommon.pm index 8bfe7b8516..86b0103181 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/CircCommon.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/CircCommon.pm @@ -559,15 +559,15 @@ sub real_void_bills { my $btype = $bill->btype(); if ($btype == 1) { # Overdues - $amount_to_void = $xact_total unless(_check_payment_interval($bpenty, $neg_balance_interval_overdues)); + $amount_to_void = $xact_total unless(_check_payment_interval($bpentry, $neg_balance_interval_overdues)); $amount_to_void = $xact_total if ($U->is_true($neg_balance_overdues)); } elsif ($btype == 3 || $btype == 10) { # Lost or Long Overdue - $amount_to_void = $xact_total unless(_check_payment_interval($bpenty, $neg_balance_interval_lost)); + $amount_to_void = $xact_total unless(_check_payment_interval($bpentry, $neg_balance_interval_lost)); $amount_to_void = $xact_total if ($U->is_true($neg_balance_lost)); } else { # Any other bill that we're trying to void. - $amount_to_void = $xact_total unless(_check_payment_interval($bpenty, $neg_balance_interval_default)); + $amount_to_void = $xact_total unless(_check_payment_interval($bpentry, $neg_balance_interval_default)); $amount_to_void = $xact_total if ($U->is_true($neg_balance_default)); } } -- 2.11.0