projects
/
working
/
SIPServer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78e3340
)
Add end_patron_session stub
author
djfiander
<djfiander>
Wed, 29 Mar 2006 23:08:27 +0000
(23:08 +0000)
committer
djfiander
<djfiander>
Wed, 29 Mar 2006 23:08:27 +0000
(23:08 +0000)
ILS.pm
patch
|
blob
|
history
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;