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.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4869 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2011-09-01 10:45:20 +00:00
parent 71d3a359d3
commit 6f32d37c83
2 changed files with 6 additions and 1 deletions

View File

@ -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> 2011-09-01 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* include/functions_agents.php: changed function strstr() for * include/functions_agents.php: changed function strstr() for

View File

@ -126,7 +126,7 @@ if (is_ajax ()) {
$result = array(); $result = array();
foreach($nameModules as $nameModule) { foreach($nameModules as $nameModule) {
$result[] = $nameModule['nombre']; $result[] = io_safe_output($nameModule['nombre']);
} }
echo json_encode($result); echo json_encode($result);