[open-ils-commits] [GIT] Evergreen ILS branch rel_2_12 updated. 8a4a9a4e87bd2c86a4568595f044b2ea849350d6
Evergreen Git
git at git.evergreen-ils.org
Thu Apr 13 21:34:44 EDT 2017
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_12 has been updated
via 8a4a9a4e87bd2c86a4568595f044b2ea849350d6 (commit)
from ec2bd722e6cfce2eb2054f83f443333a282ff4c9 (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 8a4a9a4e87bd2c86a4568595f044b2ea849350d6
Author: Josh Stompro <stomproj at larl.org>
Date: Thu Feb 23 13:38:12 2017 -0600
LP#1667115 - Silence config.hard_due_date warning
For every checkout where a hard due date isn't used there is a log
warning of "retrieve config.hard_due_date called with no ID...".
This fix silences that warning.
Signed-off-by: Josh Stompro <stomproj at larl.org>
Signed-off-by: Ben Shum <ben at evergreener.net>
diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm
index 74e425b..6c035a8 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm
@@ -1054,7 +1054,9 @@ sub run_indb_circ_test {
$self->circ_matrix_matchpoint->recurring_fine_rule->grace_period($results->[0]->{grace_period});
}
$self->circ_matrix_matchpoint->max_fine_rule($self->editor->retrieve_config_rules_max_fine($results->[0]->{max_fine_rule}));
- $self->circ_matrix_matchpoint->hard_due_date($self->editor->retrieve_config_hard_due_date($results->[0]->{hard_due_date}));
+ if(defined($results->[0]->{hard_due_date})) {
+ $self->circ_matrix_matchpoint->hard_due_date($self->editor->retrieve_config_hard_due_date($results->[0]->{hard_due_date}));
+ }
# Grab the *last* response for limit_groups, where it is more likely to be filled
$self->limit_groups($results->[-1]->{limit_groups});
}
-----------------------------------------------------------------------
Summary of changes:
.../lib/OpenILS/Application/Circ/Circulate.pm | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list