Merge branch 'ent-11215-al-ajustar-el-periodo-de-un-modulo-nuevo-creado-a-mano-el-intervalo-de-5min-no-se-puede' into 'develop'

Ent 11215 al ajustar el periodo de un modulo nuevo creado a mano el intervalo de 5min no se puede

See merge request artica/pandorafms!5898
This commit is contained in:
Rafael Ameijeiras 2023-05-25 14:50:54 +00:00
commit d231593148
1 changed files with 1 additions and 0 deletions

View File

@ -690,6 +690,7 @@ if ((int) $moduletype === MODULE_DATA) {
// If it is a non policy form, the module_interval will not provided and will. // If it is a non policy form, the module_interval will not provided and will.
// be taken the agent interval (this code is at configurar_agente.php). // be taken the agent interval (this code is at configurar_agente.php).
} else { } else {
$interval = ($interval === '') ? '300' : $interval;
$outputExecutionInterval = html_print_extended_select_for_time('module_interval', $interval, '', '', '0', false, true, false, false, $classdisabledBecauseInPolicy, $disabledBecauseInPolicy); $outputExecutionInterval = html_print_extended_select_for_time('module_interval', $interval, '', '', '0', false, true, false, false, $classdisabledBecauseInPolicy, $disabledBecauseInPolicy);
} }