From: miker Date: Tue, 3 Mar 2009 15:19:48 +0000 (+0000) Subject: return the underlying atev, which was the original intention X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b3d2baeb6dbd274d99f1f7f0d0b696d5f9181eb4;p=Evergreen.git return the underlying atev, which was the original intention git-svn-id: svn://svn.open-ils.org/ILS/trunk@12375 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Trigger/EventGroup.pm b/Open-ILS/src/perlmods/OpenILS/Application/Trigger/EventGroup.pm index b2f3d0c53a..baf8e80efb 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Trigger/EventGroup.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Trigger/EventGroup.pm @@ -128,7 +128,7 @@ sub event { my $self = shift; return undef unless (ref $self); - return $self->{events}[0]; + return $self->{events}[0]->event; } sub events {