diff options
author | Nikita Popov <nikic@php.net> | 2015-03-09 11:00:04 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2015-03-09 11:00:04 +0100 |
commit | b5184ef33606c808b66c4b2738c80376c95de65b (patch) | |
tree | 5a4e09e4470c6c40e3b816cfa93b4c3cac02a67e /ext/curl/php_curl.h | |
parent | c24afc8d8ffb3938de054bade27b553529ba6f67 (diff) | |
download | php-git-b5184ef33606c808b66c4b2738c80376c95de65b.tar.gz |
Remove unsafe curl file uploads
The option CURLOPT_SAFE_UPLOAD still exists, but cannot be disabled.
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index 7d461b82fe..bc3db650d9 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -179,7 +179,6 @@ typedef struct { zend_resource *res; zend_bool in_callback; uint32_t clone; - zend_bool safe_upload; } php_curl; #define CURLOPT_SAFE_UPLOAD -1 |