From 73b9e531bf7cab8ba6642f9cb85e4b37b48706d7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 2 Nov 2009 09:08:26 -0800 Subject: Detect "no file" upload error and, for now at least, ignore it gracefully. This was triggering on non-AJAX form submissions for new notices, preventing them from being posted when they contained no attachments. --- lib/mediafile.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/mediafile.php') diff --git a/lib/mediafile.php b/lib/mediafile.php index d4d184dd0..29d752f0c 100644 --- a/lib/mediafile.php +++ b/lib/mediafile.php @@ -152,6 +152,9 @@ class MediaFile throw new ClientException(_('The uploaded file was only' . ' partially uploaded.')); return; + case UPLOAD_ERR_NO_FILE: + // No file; probably just a non-AJAX submission. + return; case UPLOAD_ERR_NO_TMP_DIR: throw new ClientException(_('Missing a temporary folder.')); return; @@ -162,6 +165,8 @@ class MediaFile throw new ClientException(_('File upload stopped by extension.')); return; default: + common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " . + $_FILES[$param]['error']); throw new ClientException(_('System error uploading file.')); return; } -- cgit v1.2.3-54-g00ecf