diff options
author | Derick Rethans <derick@php.net> | 2002-06-28 14:45:10 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-06-28 14:45:10 +0000 |
commit | 2fda2eb4a879b52540557954783d003da63e0412 (patch) | |
tree | 3811ee9863dc38599646f31605755e4a3db4d82a /sapi | |
parent | ea7653f667b3a958e98b5dfc2f798235da53eb2e (diff) | |
download | php-git-2fda2eb4a879b52540557954783d003da63e0412.tar.gz |
- YAAC: I hope this is the last one!
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/apache2filter/sapi_apache2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/apache2filter/sapi_apache2.c b/sapi/apache2filter/sapi_apache2.c index d4f0ad7bc8..9a63da6922 100644 --- a/sapi/apache2filter/sapi_apache2.c +++ b/sapi/apache2filter/sapi_apache2.c @@ -564,8 +564,8 @@ static void php_register_hook(apr_pool_t *p) ap_hook_post_config(php_apache_server_startup, NULL, NULL, APR_HOOK_MIDDLE); ap_hook_insert_filter(php_insert_filter, NULL, NULL, APR_HOOK_MIDDLE); ap_hook_post_read_request(php_post_read_request, NULL, NULL, APR_HOOK_MIDDLE); - ap_register_output_filter("PHP", php_output_filter, AP_FTYPE_RESOURCE); - ap_register_input_filter("PHP", php_input_filter, AP_FTYPE_RESOURCE); + ap_register_output_filter("PHP", php_output_filter, NULL, AP_FTYPE_RESOURCE); + ap_register_input_filter("PHP", php_input_filter, NULL, AP_FTYPE_RESOURCE); } AP_MODULE_DECLARE_DATA module php4_module = { |