2011-05-09 Vanessa Gil <vanessa.gil@artica.es>
* operation/agentes/estado_agente.php: Fixed a mistake of my last commit. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4323 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
7e8d2b85eb
commit
b531f3c930
|
@ -1,3 +1,10 @@
|
|||
|
||||
2011-05-09 Vanessa Gil <vanessa.gil@artica.es>
|
||||
|
||||
* operation/agentes/estado_agente.php: Fixed a mistake of my last
|
||||
commit.
|
||||
|
||||
|
||||
2011-05-09 Javier Lanz <javier.lanz@artica.es>
|
||||
|
||||
* include/graphs/fgraph.php: Added 'period' parameter to slicesbar_graph
|
||||
|
@ -36,6 +43,7 @@
|
|||
* pandoradb.postgreSQL.sql: fixed the type of cell "id_agente_modulo" in the
|
||||
table "tagente_datos_string".
|
||||
|
||||
>>>>>>> .r4322
|
||||
2011-05-06 Dario Rodriguez <dario.rodriguez@artica.es>
|
||||
|
||||
* include/graphs/functions_gd.php: Added new parameter to function
|
||||
|
|
|
@ -237,6 +237,11 @@ switch ($sortField) {
|
|||
break;
|
||||
}
|
||||
|
||||
$search_sql = '';
|
||||
if ($search != ""){
|
||||
$search_sql = " AND ( nombre COLLATE utf8_general_ci LIKE '%$search%' OR direccion LIKE '%$search%') ";
|
||||
}
|
||||
|
||||
// Show only selected groups
|
||||
if ($group_id > 0) {
|
||||
$groups = $group_id;
|
||||
|
|
Loading…
Reference in New Issue