From: Jason Stephenson Date: Wed, 19 Oct 2011 20:47:03 +0000 (-0400) Subject: Use ne on line 631 of Actor.pm. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3eabec82e376dab913991c421988543bf97dc5be;p=evergreen%2Ftadl.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 1f96787fce..8b56e9757a 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; }