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:
darode 2010-07-08 14:23:03 +00:00
parent 9ef1819b52
commit 3d21ba2571
2 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -44,11 +44,11 @@ $center = (int) get_parameter ('center', 0);
if ($pure == 1) { if ($pure == 1) {
$onheader = '<a href="index.php?sec=estado&amp;sec2=operation/agentes/networkmap&amp;pure=0">'; $onheader = '<a href="index.php?sec=estado&amp;sec2=operation/agentes/networkmap&amp;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&amp;sec2=operation/agentes/networkmap&amp;pure=1">'; $onheader = '<a href="index.php?sec=estado&amp;sec2=operation/agentes/networkmap&amp;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>';
} }