From: Jeff Godin Date: Wed, 28 May 2014 20:12:15 +0000 (-0400) Subject: Revert "LP#1296937: (follow-up) $ids_only is now the last parameter for ->charged_items" X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9f763a4203f88c6cca716559291d2cb475a19349;p=working%2FSIPServer.git Revert "LP#1296937: (follow-up) $ids_only is now the last parameter for ->charged_items" This reverts commit c97d64412bc12a8df1a8734dcdb48b2bfba6362d. Signed-off-by: Jeff Godin --- diff --git a/Sip/MsgType.pm b/Sip/MsgType.pm index 763ce74..4892ca1 100644 --- a/Sip/MsgType.pm +++ b/Sip/MsgType.pm @@ -939,7 +939,7 @@ sub handle_patron_info { $resp .= add_count('patron_info/hold_items', scalar @{$patron->hold_items(undef,undef,1) }); $resp .= add_count('patron_info/overdue_items', scalar @{$patron->overdue_items(undef,undef,1)}); - $resp .= add_count('patron_info/charged_items', scalar @{$patron->charged_items(undef,undef,undef,1)}); + $resp .= add_count('patron_info/charged_items', scalar @{$patron->charged_items(undef,undef,1)}); $resp .= add_count('patron_info/fine_items', scalar @{$patron->fine_items(undef,undef,1) }); $resp .= add_count('patron_info/recall_items', scalar @{$patron->recall_items(undef,undef,1) }); $resp .= add_count('patron_info/unavail_holds', scalar @{$patron->unavail_holds(undef,undef,1)});