diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index b3300ca4f6..eda0558477 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-02-16 Miguel de Dios + + * include/functions_visual_map.php: fixed the position of items in visual + map when print by PHP. + 2011-02-15 Miguel de Dios * include/javascript/pandora.js, operation/agentes/ver_agente.php, diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 63bf090d43..891ab7ddda 100644 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -80,7 +80,7 @@ function printItemInVisualConsole($layoutData) { $sizeStyle = 'width: ' . $width . 'px; height: ' . $height . 'px;'; $imageSize = 'width="' . $width . '" height="' . $height . '"'; } - echo '
'; + echo '
'; if ($layoutData['image'] != null) { if (($width != 0) && ($height != 0)) echo print_image($img, true, array("class" => "image", "id" => "image_" . $id, "width" => "$width", "height" => "$height", "style" => $borderStyle));