2011-02-21 Miguel de Dios <miguel.dedios@artica.es>
* include/ajax/agent.php: fixed the return of call ajax, now it haven't html entities. Fixes: #3174872 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3961 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
796bed9142
commit
7a750958c5
|
@ -1,3 +1,10 @@
|
|||
2011-02-21 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/ajax/agent.php: fixed the return of call ajax, now it haven't
|
||||
html entities.
|
||||
|
||||
Fixes: #3174872
|
||||
|
||||
2011-02-21 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* ChangeLog: Change the number of item in tracker in previus commit. Sorry
|
||||
|
|
|
@ -48,7 +48,7 @@ if ($search_agents) {
|
|||
return;
|
||||
|
||||
foreach ($agents as $agent) {
|
||||
echo $agent['nombre']."|".$agent['id_agente']."|".$agent['direccion']."\n";
|
||||
echo safe_output($agent['nombre']) . "|" . safe_output($agent['id_agente']) . "|" . safe_output($agent['direccion']) . "\n";
|
||||
}
|
||||
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue