2011-02-21 Miguel de Dios <miguel.dedios@artica.es>

* godmode/agentes/agent_manager.php: fixed the return of ajax call to
	search parents, now the agent names is without html entities.
	
	Fixes: #3174872



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3957 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2011-02-21 17:21:44 +00:00
parent 19d6291855
commit 3ebd0d66ee
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2011-02-21 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/agent_manager.php: fixed the return of ajax call to
search parents, now the agent names is without html entities.
Fixes: #3174872
2011-02-21 Sergio Martin <sergio.martin@artica.es>
* include/functions_networkmap.php: Fixed the group maps

View File

@ -31,7 +31,7 @@ if (is_ajax ()) {
return;
foreach ($agents as $agent) {
echo $agent['nombre']."|".$agent['direccion']."\n";
echo safe_output($agent['nombre']) . "|" . safe_output($agent['direccion']) . "\n";
}
return;