diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index 236b7531b6..aec55d97c7 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -593,7 +593,7 @@ class Tree $module['type'] = 'module'; $module['id'] = (int) $module['id']; - $module['name'] = io_safe_output($module['name']); + $module['name'] = $module['name']; $module['id_module_type'] = (int) $module['id_tipo_modulo']; $module['server_type'] = (int) $module['id_modulo']; $module['status'] = $module['estado']; @@ -1097,7 +1097,7 @@ class Tree protected function getThirdLevelSql() { - // Get the server id + // Get the server id. $serverID = $this->serverID; $group_acl = $this->getGroupAclCondition(); diff --git a/pandora_console/include/functions_treeview.php b/pandora_console/include/functions_treeview.php index 28066781d5..082e1ab5eb 100755 --- a/pandora_console/include/functions_treeview.php +++ b/pandora_console/include/functions_treeview.php @@ -69,9 +69,9 @@ function treeview_printModuleTable($id_module, $server_data=false, $no_head=fals // Module name if ($module['disabled']) { - $cellName = ''.ui_print_truncate_text(io_safe_output($module['nombre']), GENERIC_SIZE_TEXT, true, true, true, '[…]', 'text-transform: uppercase;').ui_print_help_tip(__('Disabled'), true).''; + $cellName = ''.ui_print_truncate_text($module['nombre'], GENERIC_SIZE_TEXT, true, true, true, '[…]', 'text-transform: uppercase;').ui_print_help_tip(__('Disabled'), true).''; } else { - $cellName = ui_print_truncate_text(io_safe_output($module['nombre']), GENERIC_SIZE_TEXT, true, true, true, '[…]', 'text-transform: uppercase;'); + $cellName = ui_print_truncate_text($module['nombre'], GENERIC_SIZE_TEXT, true, true, true, '[…]', 'text-transform: uppercase;'); } $row = [];