*/
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);
}
- //Borro el archivo del tacho
- if (!unlink($this->archivo)) {
- return new PEAR_Error('No se pudo borrar el archivo del tacho.');
- }
}
/**