diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index f12b85ef32..125d2c109c 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,8 @@
+2011-09-01  Miguel de Dios  <miguel.dedios@artica.es>
+	
+	* operation/agentes/ver_agente.php: fixed the massive deletion alerts with
+	modules with white spaces.
+
 2011-09-01 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
 
 	* include/functions_agents.php: changed function strstr() for 
diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php
index a00d70b2f3..9dff93c338 100644
--- a/pandora_console/operation/agentes/ver_agente.php
+++ b/pandora_console/operation/agentes/ver_agente.php
@@ -126,7 +126,7 @@ if (is_ajax ()) {
 		
 		$result = array();
 		foreach($nameModules as $nameModule) {
-			$result[] = $nameModule['nombre'];
+			$result[] = io_safe_output($nameModule['nombre']);
 		}
 		
 		echo json_encode($result);