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:
parent
19d6291855
commit
3ebd0d66ee
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue