[open-ils-commits] [GIT] Evergreen ILS branch rel_2_1 updated. 3eabec82e376dab913991c421988543bf97dc5be
Evergreen Git
git at git.evergreen-ils.org
Tue Nov 1 12:56:30 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_1 has been updated
via 3eabec82e376dab913991c421988543bf97dc5be (commit)
from 06ffbd4d15019ab82707179243670c2591209fc7 (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 3eabec82e376dab913991c421988543bf97dc5be
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 1f96787..8b56e97 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