2010-07-08 Dario Rodriguez <dario.rodriguez@artica.es>
* operation/agentes/networkmap.php: fixed changing map layout type when you pass from full screen to normal screen or backwards Fixes: #3013601 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2978 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9ef1819b52
commit
3d21ba2571
|
@ -1,3 +1,9 @@
|
||||||
|
2010-07-08 Dario Rodriguez <dario.rodriguez@artica.es>
|
||||||
|
|
||||||
|
* operation/agentes/networkmap.php: fixed changing map layout type when
|
||||||
|
you pass from full screen to normal screen or backwards
|
||||||
|
Fixes: #3013601
|
||||||
|
|
||||||
2010-07-08 Dario Rodriguez <dario.rodriguez@artica.es>
|
2010-07-08 Dario Rodriguez <dario.rodriguez@artica.es>
|
||||||
|
|
||||||
* godmode/reporting/visual_console_builder.editor.php: fixed order in
|
* godmode/reporting/visual_console_builder.editor.php: fixed order in
|
||||||
|
|
|
@ -44,11 +44,11 @@ $center = (int) get_parameter ('center', 0);
|
||||||
|
|
||||||
|
|
||||||
if ($pure == 1) {
|
if ($pure == 1) {
|
||||||
$onheader = '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&pure=0">';
|
$onheader = '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&pure=0&layout='.$layout.'">';
|
||||||
$onheader .= print_image ("images/normalscreen.png", true, array ('title' => __('Normal screen'), 'alt' => __('Normal screen')));
|
$onheader .= print_image ("images/normalscreen.png", true, array ('title' => __('Normal screen'), 'alt' => __('Normal screen')));
|
||||||
$onheader .= '</a>';
|
$onheader .= '</a>';
|
||||||
} else {
|
} else {
|
||||||
$onheader = '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&pure=1">';
|
$onheader = '<a href="index.php?sec=estado&sec2=operation/agentes/networkmap&pure=1&layout='.$layout.'">';
|
||||||
$onheader .= print_image ("images/fullscreen.png", true, array ('title' => __('Full screen'), 'alt' => __('Normal screen')));
|
$onheader .= print_image ("images/fullscreen.png", true, array ('title' => __('Full screen'), 'alt' => __('Normal screen')));
|
||||||
$onheader .= '</a>';
|
$onheader .= '</a>';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue