diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 96ce5627cb..f78963a592 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-08-13 Sergio Martin + + * extensions/agents_modules.php: Aligned vertically the modules + paginatiomn arrows in the agents/modules matrix + 2010-08-13 Sergio Martin * include/functions.php: Fixed a bug to generate the image diff --git a/pandora_console/extensions/agents_modules.php b/pandora_console/extensions/agents_modules.php index 5cea928cc4..6cbe037086 100644 --- a/pandora_console/extensions/agents_modules.php +++ b/pandora_console/extensions/agents_modules.php @@ -87,7 +87,7 @@ function mainAgentsModules() { if($hor_offset > 0) { $new_hor_offset = $hor_offset-$block; - echo "".print_image("images/darrowleft.png",true, array('title' => __('Previous modules')))." "; + echo "".print_image("images/darrowleft.png",true, array('title' => __('Previous modules')))." "; } $nmodules = 0; foreach($modules_by_name as $module) { @@ -102,7 +102,7 @@ function mainAgentsModules() { if(($hor_offset + $block) < $nmodules) { $new_hor_offset = $hor_offset+$block; - echo "".print_image("images/darrowright.png",true, array('title' => __('More modules')))." "; + echo "".print_image("images/darrowright.png",true, array('title' => __('More modules')))." "; } // Prepare pagination @@ -140,7 +140,7 @@ function mainAgentsModules() { echo ""; - $file_name = string2image(printTruncateText($agent['nombre'],20, false, true, false, '...'), 140, 15, 3, 0, $rowcolor, $textcolor, 4, 0); + $file_name = string2image(printTruncateText($agent['nombre'],17, false, true, false, '...'), 140, 15, 3, 0, $rowcolor, $textcolor, 4, 0); echo "".print_image($file_name, true, array('title' => $agent['nombre'])).""; $agent_modules = get_agent_modules($agent['id_agente']);