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:
parent
208a1bc8af
commit
56aa12d8b2
|
@ -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
|
||||
|
|
|
@ -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) . '...';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue