2010-06-02 Sergio Martin <sergio.martin@artica.es>
* operation/agentes/networkmap.php: Fixed the fullscreen icon out of the header for bug: 3004025 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2843 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
23b546ed60
commit
f67f6f65d1
|
@ -1,3 +1,8 @@
|
|||
2010-06-02 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* operation/agentes/networkmap.php: Fixed the fullscreen
|
||||
icon out of the header for bug: 3004025
|
||||
|
||||
2010-06-02 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/functions_reporting.php
|
||||
|
|
|
@ -42,18 +42,18 @@ $center = (int) get_parameter ('center', 0);
|
|||
|
||||
/* Main code */
|
||||
|
||||
print_page_header (__('Network map'));
|
||||
|
||||
if ($pure == 1) {
|
||||
echo '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&pure=0">';
|
||||
print_image ("images/normalscreen.png", false, array ('title' => __('Normal screen'), 'alt' => __('Normal screen')));
|
||||
echo '</a>';
|
||||
$onheader = '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&pure=0">';
|
||||
$onheader .= print_image ("images/normalscreen.png", true, array ('title' => __('Normal screen'), 'alt' => __('Normal screen')));
|
||||
$onheader .= '</a>';
|
||||
} else {
|
||||
echo '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&pure=1">';
|
||||
print_image ("images/fullscreen.png", false, array ('title' => __('Normal screen'), 'alt' => __('Normal screen')));
|
||||
echo '</a>';
|
||||
$onheader = '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&pure=1">';
|
||||
$onheader .= print_image ("images/fullscreen.png", true, array ('title' => __('Full screen'), 'alt' => __('Normal screen')));
|
||||
$onheader .= '</a>';
|
||||
}
|
||||
echo '</h2>';
|
||||
|
||||
print_page_header (__('Network map'), "images/bricks.png", false, "", false, $onheader);
|
||||
|
||||
// Layout selection
|
||||
$layout_array = array (
|
||||
|
|
Loading…
Reference in New Issue