]> git.llucax.com Git - mecon/yatta.git/commitdiff
Ahora se pueden buscar archivos por el nombre del archivo temporal en disco.
authorMartín Marrese <marrese@gmail.com>
Mon, 9 Feb 2004 19:24:00 +0000 (19:24 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 9 Feb 2004 19:24:00 +0000 (19:24 +0000)
lib/YATTA/Archivo.php

index 27bc68391fbbc7a26584b55c456c80f38e3c3e2c..a7d33c4a5ce7c91f53d0f2a71a22fad985dba48b 100644 (file)
@@ -187,6 +187,9 @@ class YATTA_Archivo extends MECON_DBO {
             $where[] = ' (p.owner LIKE '. $db->quote("$this->usuario") .' OR '.
                     'p.destinos LIKE '. $db->quote("%$this->usuario%") .')';
         }
+        if (!is_null($this->archivo)) {
+            $where[] = 'p.archivo LIKE '. $db->quote("$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