Fixed free search

This commit is contained in:
Arturo Gonzalez 2017-05-23 16:54:24 +02:00
parent 6f6eac640b
commit 63129641eb
1 changed files with 5 additions and 7 deletions

View File

@ -45,7 +45,7 @@ else {
ui_meta_print_header(__('Monitor view'));
}
$ag_freestring = get_parameter ('ag_freestring');
$ag_freestring = (string)get_parameter ('ag_freestring');
$moduletype = (string) get_parameter ('moduletype');
$datatype = (string) get_parameter ('datatype');
$ag_modulename = (string) get_parameter ('ag_modulename');
@ -160,14 +160,12 @@ if ($moduletype != '') {
$sql_conditions .= sprintf (' AND tagente_modulo.id_modulo =' .$moduletype);
}
// Freestring selector
if ($ag_freestring != '') {
$sql_conditions .= sprintf (' AND (tagente.nombre LIKE \'%%%s%%\'
OR tagente.alias LIKE \'%%%s%%\'
OR tagente_modulo.nombre LIKE \'%%%s%%\'
OR tagente_modulo.descripcion LIKE \'%%%s%%\')',
$ag_freestring, $ag_freestring, $ag_freestring);
$sql_conditions .= ' AND (tagente.nombre COLLATE utf8_general_ci LIKE \'%%' . $ag_freestring . '%%\'
OR tagente.alias COLLATE utf8_general_ci LIKE \'%%' . $ag_freestring . '%%\'
OR tagente_modulo.nombre COLLATE utf8_general_ci LIKE \'%%' . $ag_freestring . '%%\'
OR tagente_modulo.descripcion COLLATE utf8_general_ci LIKE \'%%' . $ag_freestring . '%%\')';
}
// Status selector