Change label text in save filter events in metaconsole, tiquet: #2053

This commit is contained in:
m-lopez-f 2015-03-31 08:36:54 +02:00
parent 91b7bf19a5
commit f23e6ceacf
1 changed files with 4 additions and 1 deletions

View File

@ -233,7 +233,10 @@ if (check_acl ($config["id_user"], 0, "EW") || check_acl ($config["id_user"], 0,
$table->rowid[1] = 'save_filter_row1';
$data[0] = __('Filter name') . $jump;
$data[0] .= html_print_input_text ('id_name', '', '', 15, 255, true);
$data[1] = __('Filter group') . $jump;
if(defined('METACONSOLE'))
$data[1] = __('Group') . $jump;
else
$data[1] = __('Filter group') . $jump;
# Fix : Only admin users can see group ALL
$data[1] .= html_print_select_groups($config['id_user'], "ER", users_can_manage_group_all(), "id_group", $id_group, '', '', 0, true, false, false, 'w130', false, '', false, false, 'id_grupo', $strict_user);
$table->data[] = $data;