diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 235fdfd12b..eac74deb9b 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -158,6 +158,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES ('small_operation_step_datos_pur INSERT INTO `tconfig` (`token`, `value`) VALUES ('days_autodisable_deletion', '30'); INSERT INTO `tconfig` (`token`, `value`) VALUES ('MR', 0); UPDATE tconfig SET value = 'https://licensing.artica.es/pandoraupdate7/server.php' WHERE token='url_update_manager'; +DELETE FROM `tconfig` WHERE `token` = 'current_package_enterprise'; +INSERT INTO `tconfig` (`token`, `value`) VALUES ('current_package_enterprise', '700'); -- --------------------------------------------------------------------- -- Table `tplanned_downtime_agents` diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.oracle.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.oracle.sql index 3a33516c72..482c58b3fc 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.oracle.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.oracle.sql @@ -81,6 +81,8 @@ INSERT INTO tconfig (token, value) VALUES ('small_operation_step_datos_purge', ' INSERT INTO tconfig (token, value) VALUES ('days_autodisable_deletion', '30'); INSERT INTO tconfig (token, value) VALUES ('MR', 0); UPDATE tconfig SET value = 'https://licensing.artica.es/pandoraupdate7/server.php' WHERE token='url_update_manager'; +DELETE FROM tconfig WHERE token = 'current_package_enterprise'; +INSERT INTO tconfig (token, value) VALUES ('current_package_enterprise', 700); -- --------------------------------------------------------------------- -- Table `tplanned_downtime_agents` diff --git a/pandora_console/godmode/reporting/reporting_builder.list_items.php b/pandora_console/godmode/reporting/reporting_builder.list_items.php index de837beb7d..7419f27c03 100755 --- a/pandora_console/godmode/reporting/reporting_builder.list_items.php +++ b/pandora_console/godmode/reporting/reporting_builder.list_items.php @@ -299,7 +299,7 @@ if ($items) { $table->head[3] .= ' ' . html_print_image("images/sort_up.png", true, array("title" => __('Ascendent'))) . '' . '' . html_print_image("images/sort_down.png", true, array("title" => __('Descent'))) . ''; } - $table->head[4] = __('Period'); + $table->head[4] = __('Time lapse'); $table->head[5] = __('Name') . " / " . __('Description'); if (check_acl ($config['id_user'], 0, "RM")) { $table->head[6] = '' . __('Op.') . ''; diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 3a2923eb6c..4e356faf43 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -906,7 +906,8 @@ else{ } } - $only_image = !$graph_javascript || $isExternalLink; + $only_image = !$graph_javascript && $isExternalLink; + if ($layoutData['id_custom_graph'] != 0) { // Show only avg on the visual console if (get_parameter('action') == 'edit') { diff --git a/pandora_console/include/help/en/help_reporting_time_lapse.php b/pandora_console/include/help/en/help_reporting_time_lapse.php new file mode 100644 index 0000000000..df57594e42 --- /dev/null +++ b/pandora_console/include/help/en/help_reporting_time_lapse.php @@ -0,0 +1,8 @@ + +

Reports - Time lapse

+
+This is the range, or period of time over which the report renders the information for this report type. For example, a week means data from a week ago from now. \ No newline at end of file diff --git a/pandora_console/include/help/es/help_reporting_time_lapse.php b/pandora_console/include/help/es/help_reporting_time_lapse.php new file mode 100644 index 0000000000..4f6305b9a6 --- /dev/null +++ b/pandora_console/include/help/es/help_reporting_time_lapse.php @@ -0,0 +1,8 @@ + +

Reports - Time lapse

+
+Este es el lapso de tiempo que refleja el informe. Si es una semana, por ejemplo, el informe mostrarĂ¡ los datos desde hace una semana hasta ahora \ No newline at end of file diff --git a/pandora_console/include/help/ja/help_reporting_time_lapse.php b/pandora_console/include/help/ja/help_reporting_time_lapse.php new file mode 100644 index 0000000000..df57594e42 --- /dev/null +++ b/pandora_console/include/help/ja/help_reporting_time_lapse.php @@ -0,0 +1,8 @@ + +

Reports - Time lapse

+
+This is the range, or period of time over which the report renders the information for this report type. For example, a week means data from a week ago from now. \ No newline at end of file diff --git a/pandora_console/operation/events/sound_events.php b/pandora_console/operation/events/sound_events.php index 29c845d2e0..d0c8f79c9a 100644 --- a/pandora_console/operation/events/sound_events.php +++ b/pandora_console/operation/events/sound_events.php @@ -141,8 +141,7 @@ function changeGroup() { }, function (data) { $("#id_agents").empty(); - $("#id_agents").style("size", 0); - + jQuery.each (data, function (id, value) { if (value != "") { $("#id_agents").append(''); diff --git a/pandora_console/operation/visual_console/render_view.php b/pandora_console/operation/visual_console/render_view.php index 24855f5c76..55f0af0aad 100755 --- a/pandora_console/operation/visual_console/render_view.php +++ b/pandora_console/operation/visual_console/render_view.php @@ -149,7 +149,7 @@ if ($config['pure']) { // Container of the visual map (ajax loaded) echo '
' . visual_map_print_visual_map ($id_layout, true, true, - null, null, '', false, $graph_javascript) + null, null, '', false, true) . '
'; // Floating menu - Start @@ -204,7 +204,7 @@ if ($config['pure']) {