summaryrefslogtreecommitdiff
path: root/main/php_variables.c
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2003-03-25 08:07:13 +0000
committerSebastian Bergmann <sebastian@php.net>2003-03-25 08:07:13 +0000
commit5ca078779a7cde0f3a4a9b0cc8b77abd5177a1d7 (patch)
tree4aed82d43faf1aa9cf1f7080dcc1e0197542e9d3 /main/php_variables.c
parentb671380b6b5b6e1f4f235e810afa4199e989d2ba (diff)
downloadphp-git-5ca078779a7cde0f3a4a9b0cc8b77abd5177a1d7.tar.gz
Eliminate some TSRMLS_FETCH() calls. Tested with Win32 build of SAPI/CGI and SAPI/CLI on Win32.
Diffstat (limited to 'main/php_variables.c')
-rw-r--r--main/php_variables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_variables.c b/main/php_variables.c
index a47980371d..1c7ee890a3 100644
--- a/main/php_variables.c
+++ b/main/php_variables.c
@@ -454,7 +454,7 @@ PHPAPI int php_handle_special_queries(TSRMLS_D)
if (php_info_logos(SG(request_info).query_string+1 TSRMLS_CC)) {
return 1;
} else if (!strcmp(SG(request_info).query_string+1, PHP_CREDITS_GUID)) {
- php_print_credits(PHP_CREDITS_ALL);
+ php_print_credits(PHP_CREDITS_ALL TSRMLS_CC);
return 1;
}
}