[open-ils-commits] [GIT] Evergreen ILS branch rel_2_0 updated. 2a16698bec2e5cc210c6f2bc10c6389c78b5293d

Evergreen Git git at git.evergreen-ils.org
Tue Nov 1 12:57:14 EDT 2011


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_0 has been updated
       via  2a16698bec2e5cc210c6f2bc10c6389c78b5293d (commit)
      from  340e7c4b577afa9ca1e132345ba4b57ff3111187 (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 2a16698bec2e5cc210c6f2bc10c6389c78b5293d
Author: Jason Stephenson <jstephenson at mvlc.org>
Date:   Wed Oct 19 16:47:03 2011 -0400

    Use ne on line 631 of Actor.pm.
    
    This is so that we stop getting errors like
    
    Argument "1319057146.8881216485.4819607085" isn't numeric in numeric ne (!=) at
    /usr/local/share/perl/5.10.1/OpenILS/Application/Actor.pm line 630.
    
    in /openils/var/log/open-ils.actor_stderr.log
    
    Signed-off-by: Jason Stephenson <jstephenson at mvlc.org>
    Signed-off-by: Dan Scott <dscott at laurentian.ca>

diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm b/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm
index f05d165..ff8fbef 100644
--- a/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm
+++ b/Open-ILS/src/perlmods/OpenILS/Application/Actor.pm
@@ -623,7 +623,7 @@ sub verify_last_xact {
     return undef unless $xact;
     $logger->info("user xact = $xact, saving with xact " . $patron->last_xact_id);
     return OpenILS::Event->new('XACT_COLLISION')
-        if $xact != $patron->last_xact_id;
+        if $xact ne $patron->last_xact_id;
     return undef;
 }
 

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

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


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list