X-Git-Url: https://git.llucax.com/mecon/yatta.git/blobdiff_plain/637f060a763c28b19ee56dd32aec9a06ee7ab9fe..0d8ee0dcc365fda25bd7723fa5e146706fddb191:/lib/YATTA/Archivo.php diff --git a/lib/YATTA/Archivo.php b/lib/YATTA/Archivo.php index e2189ce..90a410e 100644 --- a/lib/YATTA/Archivo.php +++ b/lib/YATTA/Archivo.php @@ -187,9 +187,9 @@ class YATTA_Archivo extends MECON_DBO { $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)) { @@ -197,8 +197,8 @@ class YATTA_Archivo extends MECON_DBO { } 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 ';