2010-05-04 Sergio Martin <sergio.martin@artica.es>
* godmode/agentes/module_manager_editor_common.php: Increased the max number of digits in text inputs for max_critical, min_critical, max_warning and min_warning for bug:2931191 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2656 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
89f35e54b2
commit
f5fa127ff8
|
@ -1,3 +1,10 @@
|
|||
2010-05-04 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* godmode/agentes/module_manager_editor_common.php:
|
||||
Increased the max number of digits in text inputs
|
||||
for max_critical, min_critical, max_warning and
|
||||
min_warning for bug:2931191
|
||||
|
||||
2010-05-03 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* operation/reporting/reporting_xml.php: added default value "now" in
|
||||
|
|
|
@ -153,17 +153,17 @@ $table_simple->data[1][3] = print_select_from_sql ('SELECT id_mg, name FROM tmod
|
|||
$table_simple->data[2][0] = __('Warning status');
|
||||
$table_simple->data[2][1] = '<em>'.__('Min.').'</em>';
|
||||
$table_simple->data[2][1] .= print_input_text ('min_warning', $min_warning,
|
||||
'', 5, 15, true, $disabledBecauseInPolicy);
|
||||
'', 5, 255, true, $disabledBecauseInPolicy);
|
||||
$table_simple->data[2][1] .= '<br /><em>'.__('Max.').'</em>';
|
||||
$table_simple->data[2][1] .= print_input_text ('max_warning', $max_warning,
|
||||
'', 5, 15, true, $disabledBecauseInPolicy);
|
||||
'', 5, 255, true, $disabledBecauseInPolicy);
|
||||
$table_simple->data[2][2] = __('Critical status');
|
||||
$table_simple->data[2][3] = '<em>'.__('Min.').'</em>';
|
||||
$table_simple->data[2][3] .= print_input_text ('min_critical', $min_critical,
|
||||
'', 5, 15, true, $disabledBecauseInPolicy);
|
||||
'', 5, 255, true, $disabledBecauseInPolicy);
|
||||
$table_simple->data[2][3] .= '<br /><em>'.__('Max.').'</em>';
|
||||
$table_simple->data[2][3] .= print_input_text ('max_critical', $max_critical,
|
||||
'', 5, 15, true, $disabledBecauseInPolicy);
|
||||
'', 5, 255, true, $disabledBecauseInPolicy);
|
||||
|
||||
/* FF stands for Flip-flop */
|
||||
$table_simple->data[3][0] = __('FF threshold').' '.print_help_icon ('ff_threshold', true);
|
||||
|
|
Loading…
Reference in New Issue