diff --git a/pandora_console/general/firts_task/service_list.php b/pandora_console/general/firts_task/service_list.php index cb56dbedb2..6f910ca05d 100755 --- a/pandora_console/general/firts_task/service_list.php +++ b/pandora_console/general/firts_task/service_list.php @@ -18,7 +18,11 @@ global $config; check_login (); ui_require_css_file ('firts_task'); ?> -true, 'message'=> __('There are no services defined yet.') ) ); ?> +true, 'message'=> __('There are no services defined yet.') ) ); + +if (check_acl ($config['id_user'], 0, "UM")) { + + ?>
@@ -37,3 +41,6 @@ ui_require_css_file ('firts_task');
+ + + diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 8cae808e16..096f7d4856 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -7197,24 +7197,26 @@ function reporting_get_stats_users($data) { } // Users table - $table_us = html_get_predefined_table(); - - $tdata = array(); - $tdata[0] = html_print_image('images/user_green.png', true, array('title' => __('Defined users'))); - $tdata[1] = count (get_users ()); - $tdata[1] = '' . $tdata[1] . ''; - - $tdata[2] = $tdata[3] = ' '; - $table_us->rowclass[] = ''; - $table_us->data[] = $tdata; - - $output = '
- ' . - __('Users') . - '' . - html_print_table($table_us, true) . '
'; - - return $output; + if (check_acl ($config['id_user'], 0, "UM")) { + $table_us = html_get_predefined_table(); + + $tdata = array(); + $tdata[0] = html_print_image('images/user_green.png', true, array('title' => __('Defined users'))); + $tdata[1] = count (get_users ()); + $tdata[1] = '' . $tdata[1] . ''; + + $tdata[2] = $tdata[3] = ' '; + $table_us->rowclass[] = ''; + $table_us->data[] = $tdata; + + $output = '
+ ' . + __('Users') . + '' . + html_print_table($table_us, true) . '
'; + + return $output; + } } /** @@ -10208,3 +10210,4 @@ function reporting_label_macro ($item, $label) { } ?> +