diff options
| author | Zeev Suraski <zeev@php.net> | 2000-09-07 04:12:31 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2000-09-07 04:12:31 +0000 |
| commit | 677d4b9913df50f4978959745c0ccd43a007cd83 (patch) | |
| tree | cf41fe0ddbcb4c9364afd79330fad47f4af586c7 | |
| parent | 51a4b2411d9794f7f48d6cf7c7ded1ae377b3a6a (diff) | |
| download | php-git-677d4b9913df50f4978959745c0ccd43a007cd83.tar.gz | |
Send $HTTP_POST_FILES to the right place
| -rw-r--r-- | main/rfc1867.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c index 3b9f4fc534..bdff72a2b6 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -105,7 +105,7 @@ static void php_mime_split(char *buf, int cnt, char *boundary, zval *array_ptr) ALLOC_ZVAL(http_post_files); array_init(http_post_files); INIT_PZVAL(http_post_files); - PG(http_globals)[TRACK_VARS_POST] = http_post_files; + PG(http_globals)[TRACK_VARS_FILES] = http_post_files; ptr = buf; rem = cnt; |
