From 78de1f02a031cdd8c91587072a886693eb8fc221 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Fri, 21 Feb 2014 09:35:11 -0500 Subject: [PATCH] LP 1198465: Fix a typo in open-ils.circ.money.billing.void call. When I created the editor, I had auth=> instead of authtoken=>. Dunno why this took so long to catch. Signed-off-by: Jason Stephenson --- Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Money.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Money.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Money.pm index 619ae40a73..b556de68a6 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Money.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Money.pm @@ -871,7 +871,7 @@ __PACKAGE__->register_method( ); sub void_bill { my( $s, $c, $authtoken, @billids ) = @_; - my $editor = new_editor(auth=>$authtoken, xact=>1); + my $editor = new_editor(authtoken=>$authtoken, xact=>1); my $rv = $CC->real_void_bills($editor, \@billids); if (ref($rv) eq 'HASH') { # We got an event. -- 2.11.0