From 17b90fd3eb048662f3fc9dbf6e9f89e66c6a66f5 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 30 Jan 2018 11:10:07 -0500 Subject: [PATCH] Bug 20101 - Cronjob automatic_item_modification_by_age.pl does not log run in action logs C4::Log::cronlogaction() was never implemented in automatic_item_modification_by_age.pl. Test Plan: 1) Apply this patch 2) Enable CronjobLog 3) Run automatic_item_modification_by_age.pl succesfully 4) Note the run is noted in the action logs --- misc/cronjobs/automatic_item_modification_by_age.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/misc/cronjobs/automatic_item_modification_by_age.pl b/misc/cronjobs/automatic_item_modification_by_age.pl index 51effd3..aa985cf 100755 --- a/misc/cronjobs/automatic_item_modification_by_age.pl +++ b/misc/cronjobs/automatic_item_modification_by_age.pl @@ -8,6 +8,7 @@ use JSON; use C4::Context; use C4::Items; +use C4::Log; # Getting options my ( $verbose, $help, $confirm ); @@ -26,6 +27,8 @@ my $rules = eval { JSON::from_json( $syspref_content ) }; pod2usage({ -message => "Unable to load the configuration : $@", -exitval => 1 }) if $@; +cronlogaction(); + my $report = C4::Items::ToggleNewStatus( { rules => $rules, report_only => not $confirm } ); if ( $verbose ) { -- 2.10.2