From 0d612d70ebd9f8fc73177352109d6f8449740d9c Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 15 Feb 2004 15:40:06 +0000 Subject: [PATCH] - Patch #5874 by Bart: made file uploads work with PHP 4.2. --- includes/file.inc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/includes/file.inc b/includes/file.inc index cd9761088d8..11893402b4d 100644 --- a/includes/file.inc +++ b/includes/file.inc @@ -11,6 +11,13 @@ define('FILE_DOWNLOADS_PUBLIC', 1); define('FILE_DOWNLOADS_PRIVATE', 2); define('FILE_SEPARATOR', PHP_OS == 'WINNT' ? '\\' : '/'); +// Required for file uploads to work with PHP 4.2 +define('UPLOAD_ERR_OK', 0); +define('UPLOAD_ERR_INI_SIZE', 1); +define('UPLOAD_ERR_FORM_SIZE', 2); +define('UPLOAD_ERR_PARTIAL', 3); +define('UPLOAD_ERR_NO_FILE', 4); + /** * Create the download path to a file. */