From 0de7f65ca3ccb7e6e0aba7d7fa8e79d122d2929e Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 13 Jun 2016 18:26:22 +0000 Subject: [PATCH] Bug 16672 [QA Followup] - Convert negative days to positive days --- misc/cronjobs/cleanup_database.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/cronjobs/cleanup_database.pl b/misc/cronjobs/cleanup_database.pl index d9004ef..1987fde 100755 --- a/misc/cronjobs/cleanup_database.pl +++ b/misc/cronjobs/cleanup_database.pl @@ -299,7 +299,7 @@ if( $pUnvSelfReg ) { } if ($special_holidays_days) { - DeleteSpecialHolidays($special_holidays_days); + DeleteSpecialHolidays( abs($special_holidays_days) ); } exit(0); -- 2.1.4