2011-08-12 Vanessa Gil <vanessa.gil@artica.es>

* operation/agentes/estado_agente.php: Fixed: Agent Search engine fails with blank at the beginning or end.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4727 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
vgilc 2011-08-12 09:47:07 +00:00
parent 54d4c07a55
commit bd92ddd09e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-08-12 Vanessa Gil <vanessa.gil@artica.es>
* operation/agentes/estado_agente.php: Fixed: Agent Search engine fails with blank at the beginning or end.
2011-08-12 Javier Lanz <javier.lanz@artica.es>
* operation/agentes/exportdata.php: Fixed table style to page width

View File

@ -116,7 +116,7 @@ while ($row = db_get_all_row_by_steps_sql($first, $result, "SELECT * FROM tgrupo
// Take some parameters (GET)
$group_id = (int) get_parameter ("group_id", 0);
$search = io_safe_output(get_parameter ("search", ""));
$search = trim(io_safe_output(get_parameter ("search", "")));
$offset = get_parameter('offset', 0);
$refr = get_parameter('refr', 0);
$recursion = get_parameter('recursion', 0);