From b30a950be18a30f8a67f3a77b50dc2ba86bee117 Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 23 Jun 2006 21:44:53 +0000 Subject: [PATCH] fixed logic error git-svn-id: svn://svn.open-ils.org/ILS/trunk@4764 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm b/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm index d783803235..79a6c89c0d 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm @@ -619,10 +619,10 @@ sub _run_permit_scripts { # --------------------------------------------------------------------- # Now collect all of the events together # --------------------------------------------------------------------- - my @allevents = ( @evts_so_far, @$copy_events ); - #push( @allevents, OpenILS::Event->new($_)) for @$penalties; - #push( @allevents, OpenILS::Event->new($_)) for @$copy_events; + my @allevents; #= ( @evts_so_far, @$copy_events ); + push( @allevents, OpenILS::Event->new($_)) for @evts_so_far; + push( @allevents, OpenILS::Event->new($_)) for @$copy_events; my $ae = _check_copy_alert($ctx->{copy}); push( @allevents, $ae ) if $ae; -- 2.43.2