]> git.llucax.com Git - mecon/yatta.git/commitdiff
BugFixes.
authorMartín Marrese <marrese@gmail.com>
Thu, 15 Apr 2004 20:23:27 +0000 (20:23 +0000)
committerMartín Marrese <marrese@gmail.com>
Thu, 15 Apr 2004 20:23:27 +0000 (20:23 +0000)
lib/YATTA/Archivo.php
sistema/www/archivos.php

index 90a410e1a88e42a5cb55c703fae4d8cb44bf43d3..06b3dddad094b7281774e9e3f6ceefc076377b9f 100644 (file)
@@ -27,7 +27,7 @@ $Id$
 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.
index 0c46e3d96e8ab12db7e4fd5fe29e3856e002f33c..19b46422fcf9d982b404755da72737e4f60df1d4 100644 (file)
@@ -51,8 +51,9 @@ if (@$id && @$accion) {
             header("Pragma: no-cache");
             header("Expires: 0");
             header("Content-Type: application");
-            header("Content-Length: ".filesize($ARCHIVO->archivo));
-            readfile ($ARCHIVO->archivo);
+            header("Content-Length:
+                    ".filesize(PATH_TACHO.basename($ARCHIVO->archivo)));
+            readfile (PATH_TACHO.basename($ARCHIVO->archivo));
             exit;
             break;
     case 'borrar':