From: erickson Date: Fri, 6 Mar 2009 19:48:48 +0000 (+0000) Subject: put event args in payload to stick with convention X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=97b3d1432f397e0fde33ac62e1ec8b586195ea54;p=Evergreen.git put event args in payload to stick with convention git-svn-id: svn://svn.open-ils.org/ILS/trunk@12448 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm b/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm index f6c630073b..cb805ed0c0 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Circ.pm @@ -974,7 +974,7 @@ sub handle_mark_damaged { } else { return OpenILS::Event->new('DAMAGE_CHARGE', - usr => $circ->usr->id, charge => $total); + payload => {usr => $circ->usr->id, charge => $total}); } }