summaryrefslogtreecommitdiff
path: root/ufilter.c
diff options
context:
space:
mode:
authorStefan Esser2014-02-12 14:09:22 +0100
committerStefan Esser2014-02-12 14:09:22 +0100
commitba107ed8edb37412c3652ca8b17be78294d28ce4 (patch)
tree0f183e04fef0a853f1a665095715f8d0df5fed6a /ufilter.c
parentf0e22c0a4adc54a57264e1b212a5d5d8fee21b43 (diff)
We still need our own handlers for RFC1867 post uploads because PHP's filter system is strangely implemented.
Diffstat (limited to 'ufilter.c')
-rw-r--r--ufilter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ufilter.c b/ufilter.c
index 6584617..efab2ce 100644
--- a/ufilter.c
+++ b/ufilter.c
@@ -346,8 +346,8 @@ int suhosin_rfc1867_filter(unsigned int event, void *event_data, void **extra TS
346 } 346 }
347continue_with_next: 347continue_with_next:
348#if HAVE_RFC1867_CALLBACK 348#if HAVE_RFC1867_CALLBACK
349 if (old_rfc1867_callback != NULL) { 349 if (php_rfc1867_callback != NULL) {
350 return old_rfc1867_callback(event, event_data, extra TSRMLS_CC); 350 return php_rfc1867_callback(event, event_data, extra TSRMLS_CC);
351 } 351 }
352#endif 352#endif
353 return SUCCESS; 353 return SUCCESS;