Fixed lost tooltip (about quiet) in the form of agents.

(cherry picked from commit a345dcc9eb)
This commit is contained in:
mdtrooper 2016-04-04 12:21:15 +02:00
parent 1facd4d69f
commit 5d650ef45d
1 changed files with 2 additions and 2 deletions

View File

@ -391,9 +391,9 @@ $table->data[2][3] = html_print_input_text ('url_description',
$url_description, '', 45, 255, true); $url_description, '', 45, 255, true);
$table->data[3][2] = __('Quiet'); $table->data[3][2] = __('Quiet');
$table->data[3][3] .= ui_print_help_tip( $table->data[3][3] = ui_print_help_tip(
__('The agent still runs but the alerts and events will be stop'), true); __('The agent still runs but the alerts and events will be stop'), true);
$table->data[3][3] = html_print_checkbox('quiet', 1, $quiet, true); $table->data[3][3] .= html_print_checkbox('quiet', 1, $quiet, true);
ui_toggle(html_print_table ($table, true), __('Advanced options')); ui_toggle(html_print_table ($table, true), __('Advanced options'));
unset($table); unset($table);