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
bf990a837d
commit
3f3b1cdd48
pandora_console
|
@ -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>
|
2011-02-21 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
* include/functions_networkmap.php: Fixed the group maps
|
* include/functions_networkmap.php: Fixed the group maps
|
||||||
|
|
|
@ -31,7 +31,7 @@ if (is_ajax ()) {
|
||||||
return;
|
return;
|
||||||
|
|
||||||
foreach ($agents as $agent) {
|
foreach ($agents as $agent) {
|
||||||
echo $agent['nombre']."|".$agent['direccion']."\n";
|
echo safe_output($agent['nombre']) . "|" . safe_output($agent['direccion']) . "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue