diff options
| author | Doug MacEachern <dougm@php.net> | 2001-11-13 21:40:01 +0000 |
|---|---|---|
| committer | Doug MacEachern <dougm@php.net> | 2001-11-13 21:40:01 +0000 |
| commit | 898099adba1d36f0c6c9e679b5ade49b42b87840 (patch) | |
| tree | e0c9fb8845c408175ece4196dab911b569466fb2 /sapi/apache2filter | |
| parent | de46a16e43c3561d8be19ee741385adb22cb3311 (diff) | |
| download | php-git-898099adba1d36f0c6c9e679b5ade49b42b87840.tar.gz | |
setup standard CGI variables
Diffstat (limited to 'sapi/apache2filter')
| -rw-r--r-- | sapi/apache2filter/sapi_apache2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sapi/apache2filter/sapi_apache2.c b/sapi/apache2filter/sapi_apache2.c index 5dbb8947ff..f08f483099 100644 --- a/sapi/apache2filter/sapi_apache2.c +++ b/sapi/apache2filter/sapi_apache2.c @@ -323,6 +323,10 @@ static int php_output_filter(ap_filter_t *f, apr_bucket_brigade *bb) return ap_pass_brigade(f->next, bb); } + /* setup standard CGI variables */ + ap_add_common_vars(f->r); + ap_add_cgi_vars(f->r); + ctx = SG(server_context); INIT_CTX; |
