summaryrefslogtreecommitdiff
path: root/ext/fdf/fdf.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/fdf/fdf.c')
-rw-r--r--ext/fdf/fdf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/fdf/fdf.c b/ext/fdf/fdf.c
index 3c88e9397c..8fed3d3f4b 100644
--- a/ext/fdf/fdf.c
+++ b/ext/fdf/fdf.c
@@ -726,7 +726,6 @@ SAPI_POST_HANDLER_FUNC(fdf_post_handler)
ASInt32 nBytes;
zval *array_ptr = (zval *) arg;
TSRMLS_FETCH();
- PLS_FETCH();
fp=php_open_temporary_file(NULL,"fdfdata.",&filename);
if(!fp) {
@@ -768,7 +767,7 @@ SAPI_POST_HANDLER_FUNC(fdf_post_handler)
for(p=value;*p;p++) if(*p=='\r') *p='\n';
if(lastfieldname) efree(lastfieldname);
lastfieldname = estrdup(name);
- php_register_variable(name, value, array_ptr TSRMLS_CC PLS_CC);
+ php_register_variable(name, value, array_ptr TSRMLS_CC);
}
}
}