From a238594354d7a8823aa7185de6562962ccf7d07d Mon Sep 17 00:00:00 2001 From: alejandro-campos Date: Thu, 14 Nov 2019 12:48:55 +0100 Subject: [PATCH 1/2] change days select in module cron --- pandora_console/include/functions_html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index ab3aad9c7a..d63d5ba117 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -1183,7 +1183,7 @@ function html_print_extended_select_for_cron($hour='*', $minute='*', $mday='*', } // Month days - for ($i = 0; $i < 31; $i++) { + for ($i = 0; $i <= 31; $i++) { $mdays[$i] = $i; } From a064f47ef3b9be1846a0e0a56f637620cd03285f Mon Sep 17 00:00:00 2001 From: alejandro-campos Date: Wed, 20 Nov 2019 17:20:17 +0100 Subject: [PATCH 2/2] fix module cron values --- pandora_console/include/functions_html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index d63d5ba117..073c98738c 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -1183,7 +1183,7 @@ function html_print_extended_select_for_cron($hour='*', $minute='*', $mday='*', } // Month days - for ($i = 0; $i <= 31; $i++) { + for ($i = 1; $i <= 31; $i++) { $mdays[$i] = $i; }