From: Leandro Lucarella Date: Sat, 23 Apr 2005 21:41:38 +0000 (+0000) Subject: Se hace que un archivo vacío siga dando error pero un error más descriptivo. X-Git-Tag: svn_import~6 X-Git-Url: https://git.llucax.com/software/sercom-old.git/commitdiff_plain/0daad71b27fd503bdfe92ca4acda8ab697204c7f?ds=sidebyside Se hace que un archivo vacío siga dando error pero un error más descriptivo. --- diff --git a/src/sc_fetch b/src/sc_fetch index 6a78b6d..e4e6021 100755 --- a/src/sc_fetch +++ b/src/sc_fetch @@ -202,7 +202,8 @@ function preparar_entrega($intento, $mbox, $msgid, $dir) { if ($fname) { logs("Escribiendo archivo '$fname' [enc={$part->encoding}]", DEBUG); $body = decode_body(imap_fetchbody($mbox, $msgid, $id + 1), $part->encoding); - if (!file_put_contents("$path/$fname", $body) and $body) return "Error al guardar el archivo $fname"; + if (!$body) return "El archivo '$fname' está vacío"; + if (!file_put_contents("$path/$fname", $body)) return "Error al guardar el archivo $fname"; } //if (part_is_source($part) $has_sources = true; //elseif (part_mime_type($part) == 'application/zip') $has_sources = true;