$where[] = 'p.resultado LIKE '. $db->quote("%$this->resultado%");
}
if (!is_null($this->usuario)) {
- $where[] = ' (p.owner LIKE '. $db->quote("$this->usuario");
+ $where[] = ' p.owner LIKE '. $db->quote("$this->usuario");
if ($destinos) {
- $where[] = 'p.destinos LIKE '. $db->quote("%$this->usuario%");
+ $where[] = ' p.destinos LIKE '. $db->quote("%$this->usuario%");
}
}
if (!is_null($this->archivo)) {
}
if ($where) {
$where = 'WHERE p.status = 2 AND p.resultado is not null '.
- 'AND p.id_sistema = s.id_sistema AND ('. join ("$operador
- ", $where).') ';
+ 'AND p.id_sistema = s.id_sistema AND ('. join ("$operador "
+ , $where).') ';
}
else {
$where = 'WHERE p.id_sistema = s.id_sistema ';