]> git.llucax.com Git - mecon/yatta.git/blobdiff - lib/YATTA/Archivo.php
BugFix.
[mecon/yatta.git] / lib / YATTA / Archivo.php
index 90a410e1a88e42a5cb55c703fae4d8cb44bf43d3..a471702a008f790a0a7c38c67bbf2f60f55aefed 100644 (file)
@@ -27,7 +27,7 @@ $Id$
 require_once 'MECON/DBO.php';
 require_once 'PEAR.php';
 
 require_once 'MECON/DBO.php';
 require_once 'PEAR.php';
 
-define ('PATH_TACHO', '/var/www/yatta/tacho/');
+define ('PATH_TACHO', '/var/www/sistemas/yatta/tacho/');
 
 /**
  * Clase para el manejo de los archivos.
 
 /**
  * Clase para el manejo de los archivos.
@@ -144,14 +144,14 @@ class YATTA_Archivo extends MECON_DBO {
      */
     function borrar($db = null)
     {
      */
     function borrar($db = null)
     {
+        //Borro el archivo del tacho
+        if (!unlink(PATH_TACHO.basename($this->archivo))) {
+            return new PEAR_Error('No se pudo borrar el archivo del tacho.');
+        }
         $res = $db->query('DELETE FROM yatta.procesos WHERE id = '. $this->id);
         if (PEAR::isError($res)) {
              trigger_error('Error: ' . $res->getMessage() . "\n", E_USER_ERROR);
         }
         $res = $db->query('DELETE FROM yatta.procesos WHERE id = '. $this->id);
         if (PEAR::isError($res)) {
              trigger_error('Error: ' . $res->getMessage() . "\n", E_USER_ERROR);
         }
-        //Borro el archivo del tacho
-        if (!unlink($this->archivo)) {
-            return new PEAR_Error('No se pudo borrar el archivo del tacho.');
-        }
     }
 
     /**
     }
 
     /**