diff options
| author | Sebastian Bergmann <sebastian@php.net> | 2003-03-25 08:07:13 +0000 | 
|---|---|---|
| committer | Sebastian Bergmann <sebastian@php.net> | 2003-03-25 08:07:13 +0000 | 
| commit | 5ca078779a7cde0f3a4a9b0cc8b77abd5177a1d7 (patch) | |
| tree | 4aed82d43faf1aa9cf1f7080dcc1e0197542e9d3 /sapi/apache2handler/php_functions.c | |
| parent | b671380b6b5b6e1f4f235e810afa4199e989d2ba (diff) | |
| download | php-git-5ca078779a7cde0f3a4a9b0cc8b77abd5177a1d7.tar.gz | |
Eliminate some TSRMLS_FETCH() calls. Tested with Win32 build of SAPI/CGI and SAPI/CLI on Win32.
Diffstat (limited to 'sapi/apache2handler/php_functions.c')
| -rw-r--r-- | sapi/apache2handler/php_functions.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2handler/php_functions.c b/sapi/apache2handler/php_functions.c index 665af1eec7..1664528dbe 100644 --- a/sapi/apache2handler/php_functions.c +++ b/sapi/apache2handler/php_functions.c @@ -92,7 +92,7 @@ PHP_FUNCTION(virtual)  	/* Flush everything. */  	php_end_ob_buffers(1 TSRMLS_CC); -	php_header(); +	php_header(TSRMLS_C);  	if (ap_run_sub_req(rr)) {  		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include '%s' - request execution failed", Z_STRVAL_PP(filename));  | 
