diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 04760f5c82..4ea56345fc 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-02-15 Miguel de Dios + + * operation/visual_console/render_view.php: fixed the link to edit + visual console. + 2011-02-15 Miguel de Dios * operation/search_users.php: fixed unclose parentheses. diff --git a/pandora_console/operation/visual_console/render_view.php b/pandora_console/operation/visual_console/render_view.php index 52b3069ca2..7bf60c9ceb 100644 --- a/pandora_console/operation/visual_console/render_view.php +++ b/pandora_console/operation/visual_console/render_view.php @@ -54,8 +54,8 @@ if (! give_acl ($config["id_user"], $id_group, "AR")) { // Render map $options = array(); -if (give_acl ($config["id_user"], $id_group, "AW")){ - $options['setup']['text'] = ''.print_image ("images/setup.png", true, array ("title" => __('Setup'))).''; +if (give_acl ($config["id_user"], $id_group, "AW")) { + $options['setup']['text'] = ''.print_image ("images/setup.png", true, array ("title" => __('Setup'))).''; $options['setup']['active'] = false; } @@ -63,7 +63,8 @@ if ($config["pure"] == 0) { $options['pure']['text'] = '' . print_image ("images/fullscreen.png", true, array ("title" => __('Full screen mode'))) . ""; -} else { +} +else { $options['pure']['text'] = '' . print_image ("images/normalscreen.png", true, array ("title" => __('Back to normal mode'))) . "";