From: Jason Stephenson Date: Wed, 19 Oct 2011 20:47:03 +0000 (-0400) Subject: Use ne on line 631 of Actor.pm. X-Git-Tag: sprint4-merge-nov22~4862 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e000ec5da7ec06c3179276e22a91dd76f80b4981;p=working%2FEvergreen.git 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 Signed-off-by: Dan Scott --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm index ad6fabc176..03a20aab6b 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; }