From a98a3bea2a5e98eda794e0ed25ab03fa57f9d85f 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 Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall --- 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 d9004ef7db..1987fde9b9 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.39.5