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/apache/php_apache.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/apache/php_apache.c')
-rw-r--r-- | sapi/apache/php_apache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 9a4e409fa8..733cfba0e5 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -321,7 +321,7 @@ PHP_FUNCTION(virtual) } php_end_ob_buffers(1 TSRMLS_CC); - php_header(); + php_header(TSRMLS_C); if (run_sub_req(rr)) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to include '%s' - request execution failed", (*filename)->value.str.val); |