From: djfiander Date: Wed, 29 Mar 2006 23:08:27 +0000 (+0000) Subject: Add end_patron_session stub X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=422a0e067888ea548e98f7f867c327c33e74e4e3;p=SIPServer.git Add end_patron_session stub --- diff --git a/ILS.pm b/ILS.pm index b39582f..904dd5a 100644 --- a/ILS.pm +++ b/ILS.pm @@ -111,4 +111,13 @@ sub block_patron { return $patron; } +# If the ILS caches patron information, this lets it free +# it up +sub end_patron_session { + my ($self, $patron_id) = @_; + + # success?, screen_msg, print_line + return (1, 'Thank you for using Evergreen!', ''); +} + 1;