[open-ils-commits] [GIT] Evergreen ILS branch master updated. e000ec5da7ec06c3179276e22a91dd76f80b4981

Evergreen Git git at git.evergreen-ils.org
Tue Nov 1 12:55:27 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, master has been updated
       via  e000ec5da7ec06c3179276e22a91dd76f80b4981 (commit)
      from  19b81874ffbdf91f4acbe93f8e8f4c44f111c6a1 (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 e000ec5da7ec06c3179276e22a91dd76f80b4981
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/lib/OpenILS/Application/Actor.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm
index ad6fabc..03a20aa 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm
@@ -628,7 +628,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:
 .../src/perlmods/lib/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