[open-ils-commits] [GIT] Evergreen ILS branch rel_2_6 updated. fbf3adf7243f957ea6fef912d6f55e1b4a397d1e

Evergreen Git git at git.evergreen-ils.org
Thu Sep 18 16:40:39 EDT 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_2_6 has been updated
       via  fbf3adf7243f957ea6fef912d6f55e1b4a397d1e (commit)
      from  98665c3529ee6ee2bc2c35a85f966d5a159e8e58 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit fbf3adf7243f957ea6fef912d6f55e1b4a397d1e
Author: Bill Erickson <berick at esilibrary.com>
Date:   Wed Aug 13 16:44:50 2014 -0400

    LP#1356576 repair sip date_format config typo
    
    Avoids "Use of uninitialized value in bitwise or (|)" error.
    
    Signed-off-by: Bill Erickson <berick at esilibrary.com>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/SIP.pm b/Open-ILS/src/perlmods/lib/OpenILS/SIP.pm
index 664bb62..bd11e19 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/SIP.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/SIP.pm
@@ -206,7 +206,7 @@ sub format_date {
     # Due dates need hyphen separators and time of day as well
     if ($type eq 'due') {
 
-        my $use_sdf = $class->get_option_value('use_sip_date_format') | '';
+        my $use_sdf = $class->get_option_value('use_sip_date_format') || '';
 
         if ($use_sdf =~ /true/i) {
             $date = $dt->strftime(SIP_DATETIME);

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/perlmods/lib/OpenILS/SIP.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list