Add end_patron_session stub
authordjfiander <djfiander>
Wed, 29 Mar 2006 23:08:27 +0000 (23:08 +0000)
committerdjfiander <djfiander>
Wed, 29 Mar 2006 23:08:27 +0000 (23:08 +0000)
ILS.pm

diff --git a/ILS.pm b/ILS.pm
index b39582f..904dd5a 100644 (file)
--- 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;