2010-01-11 Javier Lanz <javier.lanz@artica.es>
*godmode/agentes/module_manager.php: Fixed an error truncating module name Fixes bug #3138420 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3732 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
fca081ab21
commit
003d78d200
|
@ -1,3 +1,8 @@
|
|||
2010-01-11 Javier Lanz <javier.lanz@artica.es>
|
||||
*godmode/agentes/module_manager.php: Fixed an error truncating module name
|
||||
|
||||
Fixes bug #3138420
|
||||
|
||||
2010-01-10 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* pchart_graph.php: Remove axis values and legend in small graphs.
|
||||
|
|
|
@ -287,9 +287,9 @@ foreach ($modules as $module) {
|
|||
|
||||
$data[0] = '<a href="index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente='.$id_agente.'&tab=module&edit_module=1&id_agent_module='.$module['id_agente_modulo'].'">';
|
||||
if ($module["disabled"])
|
||||
$data[0] .= '<em class="disabled_module">'.$module['nombre'].'</em>';
|
||||
$data[0] .= '<em class="disabled_module">'.printTruncateText($module['nombre'], 25, false).'</em>';
|
||||
else
|
||||
$data[0] .= $module['nombre'];
|
||||
$data[0] .= printTruncateText($module['nombre'], 25, false);
|
||||
$data[0] .= '</a>';
|
||||
|
||||
if ($isFunctionPolicies !== ENTERPRISE_NOT_HOOK) {
|
||||
|
|
Loading…
Reference in New Issue