diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 522ada4263..055c75b58d 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2012-03-22 Sergio Martin + + * godmode/reporting/graph_builder.php: Reallocate + the "View graph" button to the original place in + the combined graphs section + 2012-03-22 Sergio Martin * include/functions_html.php diff --git a/pandora_console/godmode/reporting/graph_builder.php b/pandora_console/godmode/reporting/graph_builder.php index ff5d89a37c..57b8d322e9 100644 --- a/pandora_console/godmode/reporting/graph_builder.php +++ b/pandora_console/godmode/reporting/graph_builder.php @@ -160,15 +160,15 @@ if($change_weight){ if($edit_graph) { $buttons = array( - 'view' => array('active' => false, - 'text' => '' . - html_print_image("images/chart_curve.png", true, array ("title" => __('View graph'))) .''), 'main' => array('active' => false, 'text' => '' . html_print_image("images/setup.png", true, array ("title" => __('Setup'))) .''), 'graph_editor' => array('active' => false, 'text' => '' . - html_print_image("images/config.png", true, array ("title" => __('Graph editor'))) .'') + html_print_image("images/config.png", true, array ("title" => __('Graph editor'))) .''), + 'view' => array('active' => false, + 'text' => '' . + html_print_image("images/chart_curve.png", true, array ("title" => __('View graph'))) .'') ); $buttons[$active_tab]['active'] = true;