diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 534bf07a0b..0593021bdc 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -1079,7 +1079,6 @@ You can of course remove the warnings, that's why we include the source and do n } } } - // html_debug($agents); html_print_select($agents2, 'id_agents2[]', $agents_select, $script = '', "", 0, false, true, true, '', false, "min-width: 180px"); ?> diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 2c98fb5493..0e46581178 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -608,9 +608,6 @@ function readFields() { values['process_simple_value'] = $("select[name=process_value]").val(); values['background'] = $("#background_image").val(); values['period'] = undefined != $("#hidden-period").val() ? $("#hidden-period").val() : $("#period").val(); - if (values['period'] == null) { - values['period'] = undefined != $("#hidden-period").val() ? $("#hidden-period").val() : $("#period_select").val(); - } values['width'] = $("input[name=width]").val(); values['width_data_image'] = $("#data_image_width").val(); if(selectedItem == 'simple_value' || creationItem == 'simple_value'){ diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index f1b8a5b161..09914cb0ed 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -836,22 +836,6 @@ function html_print_extended_select_for_time ($name, $selected = '', SECONDS_1MONTH => __('months'), SECONDS_1YEAR => __('years')); - // The advanced control is only for admins - if (!is_user_admin($config['id_user'])) { - unset($fields[-1]); - - $returnString = html_print_select ($fields, $name . '_select', $selected,"" . $script, - $nothing, $nothing_value, true, false, false, '', false, 'font-size: xx-small;'.$select_style); - - if ($return) { - return $returnString; - } - else { - echo $returnString; - return; - } - } - if ($unique_name === true) { $uniq_name = uniqid($name); } @@ -868,13 +852,16 @@ function html_print_extended_select_for_time ($name, $selected = '', echo '
'; html_print_select ($fields, $uniq_name . '_select', $selected,"" . $script, $nothing, $nothing_value, false, false, false, $class, $readonly, 'font-size: xx-small;'.$select_style); - echo ' ' . - html_print_image('images/pencil.png', true, - array('class' => $uniq_name . '_toggler', + // The advanced control is only for admins + if (is_user_admin($config['id_user'])) { + echo ' ' . + html_print_image('images/pencil.png', true, + array('class' => $uniq_name . '_toggler', 'alt' => __('Custom'), 'title' => __('Custom'), 'style' => 'width: 18px;'.$style_icon), false, false, true) . - ''; + ''; + } echo '
'; echo '
'; diff --git a/pandora_console/operation/agentes/interface_traffic_graph_win.php b/pandora_console/operation/agentes/interface_traffic_graph_win.php index 2b20b0dfb0..8463ddfa9c 100644 --- a/pandora_console/operation/agentes/interface_traffic_graph_win.php +++ b/pandora_console/operation/agentes/interface_traffic_graph_win.php @@ -140,9 +140,6 @@ $interface_traffic_modules = array( // Get input parameters $period = get_parameter ("period"); - if ($period == "") { - $period = get_parameter ("period_select", SECONDS_1DAY); - } $width = (int) get_parameter("width", 555); $height = (int) get_parameter("height", 245); $start_date = (string) get_parameter("start_date", date("Y-m-d")); diff --git a/pandora_console/operation/agentes/stat_win.php b/pandora_console/operation/agentes/stat_win.php index 61227880d8..be93c2d3cc 100644 --- a/pandora_console/operation/agentes/stat_win.php +++ b/pandora_console/operation/agentes/stat_win.php @@ -151,9 +151,6 @@ $alias = db_get_value ("alias","tagente","id_agente",$id_agent); } $period = get_parameter ("period"); - if ($period == "") { - $period = get_parameter ("period_select", SECONDS_1DAY); - } $id = get_parameter ("id", 0); $width = get_parameter ("width", STATWIN_DEFAULT_CHART_WIDTH); $height = get_parameter ("height", STATWIN_DEFAULT_CHART_HEIGHT);