minor changes

This commit is contained in:
alejandro.campos@artica.es 2021-05-05 13:02:53 +02:00
parent f0f7244d84
commit aa4769d331

View File

@ -329,22 +329,20 @@ $row['control'] = html_print_input_text(
true, true,
false, false,
false false
).ui_print_help_icon('alert_macros', true); );
$table_alert_settings->data['custom_response_incident_title'] = $row; $table_alert_settings->data['custom_response_incident_title'] = $row;
// Alert incident description. // Alert incident description.
$row = []; $row = [];
$row['name'] = __('Description'); $row['name'] = __('Ticket body');
$row['control'] = html_print_input_text( $row['control'] = html_print_textarea(
'incident_content', 'incident_content',
7,
25,
$config['incident_content'], $config['incident_content'],
'', '',
50, true
100, );
true,
false,
false
).ui_print_help_icon('alert_macros', true);
$table_alert_settings->data['custom_response_incident_content'] = $row; $table_alert_settings->data['custom_response_incident_content'] = $row;
// Alert default group. // Alert default group.
@ -452,22 +450,21 @@ $row['control'] = html_print_input_text(
true, true,
false, false,
false false
).ui_print_help_icon('response_macros', true); );
$table_cr_settings->data['custom_response_incident_title'] = $row; $table_cr_settings->data['custom_response_incident_title'] = $row;
// Custom response incident description. // Custom response incident description.
$row = []; $row = [];
$row['name'] = __('Description'); $row['name'] = __('Ticket body');
$row['control'] = html_print_input_text( $row['control'] = html_print_textarea(
'cr_incident_content', 'cr_incident_content',
7,
25,
$config['cr_incident_content'], $config['cr_incident_content'],
'', '',
50, true
100, );
true,
false,
false
).ui_print_help_icon('response_macros', true);
$table_cr_settings->data['custom_response_incident_content'] = $row; $table_cr_settings->data['custom_response_incident_content'] = $row;
// Custom response default group. // Custom response default group.
@ -599,7 +596,7 @@ if ($has_connection != false) {
// Form alert default settings. // Form alert default settings.
echo '<div id="form_alert_settings">'; echo '<div id="form_alert_settings">';
echo '<fieldset>'; echo '<fieldset>';
echo '<legend>'.__('Alert default values').'</legend>'; echo '<legend>'.__('Alert default values').'&nbsp'.ui_print_help_icon('alert_macros', true).'</legend>';
html_print_table($table_alert_settings); html_print_table($table_alert_settings);
@ -609,7 +606,7 @@ if ($has_connection != false) {
// Form custom response default settings. // Form custom response default settings.
echo '<div id="form_custom_response_settings">'; echo '<div id="form_custom_response_settings">';
echo '<fieldset>'; echo '<fieldset>';
echo '<legend>'.__('Event custom response default values').'</legend>'; echo '<legend>'.__('Event custom response default values').'&nbsp'.ui_print_help_icon('alert_macros', true).'</legend>';
html_print_table($table_cr_settings); html_print_table($table_cr_settings);