From: Jeff Godin Date: Tue, 4 Sep 2012 11:53:55 +0000 (-0400) Subject: Adjust wording of SIP 'expired' message X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c619110ca01b3e303f65b646dba674606568dc11;p=evergreen%2Ftadl.git Adjust wording of SIP 'expired' message Adjust wording of SIP 'expired' message on patrons -- this is displayed on selfcheck terminals. Signed-off-by: Jeff Godin --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm b/Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm index 65409acd68..f76d7de139 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm @@ -405,7 +405,7 @@ sub screen_msg { # has the patron account expired? my $expire = DateTime::Format::ISO8601->new->parse_datetime(cleanse_ISO8601($u->expire_date)); - return $b if CORE::time > $expire->epoch; + return 'Our records show that we need to update or verify your account information. Please visit the circulation desk.' if CORE::time > $expire->epoch; return 'OK'; }