From 11e89a7af8c8688bff4fac2fae61369837673bd2 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 17 Apr 2017 12:00:03 -0400 Subject: [PATCH] JBAS-1554 Avoid duplicate circ_ids vars Signed-off-by: Bill Erickson --- Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm index b756974298..291f48ef74 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm @@ -1747,7 +1747,7 @@ sub handle_circ_update { my $action = shift; my $circ_ids = shift; - my $circ_ids //= [$self->cgi->param('circ_id')]; + $circ_ids //= [$self->cgi->param('circ_id')]; if ($action =~ /delete/) { my $options = { -- 2.11.0