summaryrefslogtreecommitdiff
path: root/ext/standard/mime.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/mime.c')
-rw-r--r--ext/standard/mime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/mime.c b/ext/standard/mime.c
index d6f71e57ac..ec53b7d0d0 100644
--- a/ext/standard/mime.c
+++ b/ext/standard/mime.c
@@ -222,7 +222,7 @@ void php3_mime_split(char *buf, int cnt, char *boundary, pval *http_post_vars PL
}
bytes = fwrite(ptr, 1, loc - ptr - 4, fp);
fclose(fp);
- php3_list_insert(fn,GLOBAL(le_uploads)); /* Tell PHP about the file so the destructor can unlink it later */
+ php3_list_insert(fn,le_uploads); /* Tell PHP about the file so the destructor can unlink it later */
if (bytes < (loc - ptr - 4)) {
php3_error(E_WARNING, "Only %d bytes were written, expected to write %ld", bytes, loc - ptr - 4);
}