Merge branch 'ent-3590-Ampliar_limite_de_caracteres_en_str_warning_y_str_critical_en_consola' into 'develop'
fixed minor error lenght str.warning and str.critical 1024 charts See merge request artica/pandorafms!2233 Former-commit-id: d79f8f1b2b293544dd463387d33bd36669accb4c
This commit is contained in:
commit
962e519bc9
|
@ -431,7 +431,7 @@ if (modules_is_string_type($id_module_type) || $edit) {
|
|||
str_replace('"', '', $str_warning),
|
||||
'',
|
||||
10,
|
||||
255,
|
||||
1024,
|
||||
true,
|
||||
$disabledBecauseInPolicy,
|
||||
false,
|
||||
|
@ -484,7 +484,7 @@ if (modules_is_string_type($id_module_type) || $edit) {
|
|||
str_replace('"', '', $str_critical),
|
||||
'',
|
||||
10,
|
||||
255,
|
||||
1024,
|
||||
true,
|
||||
$disabledBecauseInPolicy,
|
||||
false,
|
||||
|
|
|
@ -562,7 +562,7 @@ $table->data['edit1'][1] = '<table width="100%">';
|
|||
'',
|
||||
'',
|
||||
5,
|
||||
255,
|
||||
1024,
|
||||
true
|
||||
);
|
||||
$table->data['edit1'][1] .= '</td>';
|
||||
|
@ -631,7 +631,7 @@ $table->data['edit1'][1] = '<table width="100%">';
|
|||
'',
|
||||
'',
|
||||
5,
|
||||
255,
|
||||
1024,
|
||||
true
|
||||
);
|
||||
$table->data['edit1'][3] .= '</td>';
|
||||
|
|
|
@ -190,7 +190,7 @@ $table->data[4][1] .= html_print_input_text(
|
|||
$str_warning,
|
||||
'',
|
||||
5,
|
||||
64,
|
||||
1024,
|
||||
true
|
||||
).'</span>';
|
||||
$table->data[4][1] .= '<br /><em>'.__('Inverse interval').'</em>';
|
||||
|
@ -225,7 +225,7 @@ $table->data[5][1] .= html_print_input_text(
|
|||
$str_critical,
|
||||
'',
|
||||
5,
|
||||
64,
|
||||
1024,
|
||||
true
|
||||
).'</span>';
|
||||
$table->data[5][1] .= '<br /><em>'.__('Inverse interval').'</em>';
|
||||
|
|
Loading…
Reference in New Issue