011-08-23 Sergio Martin <sergio.martin@artica.es>

* include/functions_networkmap.php: Fixed a unecessary toLower
	call function



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4807 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2011-08-23 11:11:28 +00:00
parent 208a1bc8af
commit 56aa12d8b2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-08-23 Sergio Martin <sergio.martin@artica.es>
* include/functions_networkmap.php: Fixed a unecessary toLower
call function
2011-08-23 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* images/skin/skin_default/images/plotchart.png: Added network console

View File

@ -430,7 +430,7 @@ function networkmap_create_agent_node ($agent, $simple = 0, $font_size = 10, $cu
}
// Short name
$name = io_safe_output(strtolower ($agent["nombre"]));
$name = io_safe_output($agent["nombre"]);
if ((strlen ($name) > 16) && ($cut_names)) {
$name = substr ($name, 0, 16) . '...';
}