From eb6c01ef2a2332f99065e5f7dda9e4af81323db5 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Tue, 16 Feb 2010 07:27:55 +0000 Subject: [PATCH] Fixed bug #51054 (UPLOAD_ERR_EXTENSION documentation unclear) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@295140 c90b9560-bf6c-de11-be94-00142212c4b1 --- features/file-upload.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/features/file-upload.xml b/features/file-upload.xml index 1b8b2fe461..30e219b1ce 100644 --- a/features/file-upload.xml +++ b/features/file-upload.xml @@ -326,7 +326,10 @@ foreach ($_FILES["pictures"]["error"] as $key => $error) { UPLOAD_ERR_EXTENSION - Value: 8; File upload stopped by extension. Introduced in PHP 5.2.0. + Value: 8; A PHP extension stopped the file upload. PHP does not + provide a way to ascertain which extension caused the file upload to + stop; examining the list of loaded extensions with phpinfo() may help. + Introduced in PHP 5.2.0.