X-Git-Url: https://git.llucax.com/mecon/yatta.git/blobdiff_plain/de0d2712aeb708b7077beaaa2220d3e24d52ddfd..b29e6804a1bdee0c88fef3262e24d1b83e1a8072:/sistema/www/archivos.php diff --git a/sistema/www/archivos.php b/sistema/www/archivos.php index 1c74c20..492c2c5 100644 --- a/sistema/www/archivos.php +++ b/sistema/www/archivos.php @@ -32,9 +32,6 @@ require_once 'MECON/HTML/Link.php'; require_once 'YATTA/Archivo.php'; //}}} -//TODO Definir la cuota en algun lado (Kb) -$cuota = 2048; - //Actuar segun la accion, etc {{{ $accion = @$_REQUEST['accion']; $id = @$_REQUEST['_id']; @@ -54,14 +51,17 @@ if (@$id && @$accion) { header("Pragma: no-cache"); header("Expires: 0"); header("Content-Type: application"); - header("Content-Length: ".filesize($ARCHIVO->path.$ARCHIVO->archivo)); - readfile ($ARCHIVO->path.$ARCHIVO->archivo); + header("Content-Length: ".filesize($ARCHIVO->archivo)); + readfile ($ARCHIVO->archivo); exit; break; case 'borrar': - $ARCHIVO->borrar($DB); - //TODO Capturar el posible error + $res = $ARCHIVO->borrar($DB); + if (PEAR::isError($res)) { + die('Error: ' . $res->getMessage() . "\n"); + } header ('Location:archivos'); + exit; break; } }