summaryrefslogtreecommitdiff
path: root/sapi/apache_hooks/sapi_apache.c
diff options
context:
space:
mode:
authorGeorge Schlossnagle <gschlossnagle@php.net>2002-11-18 19:07:37 +0000
committerGeorge Schlossnagle <gschlossnagle@php.net>2002-11-18 19:07:37 +0000
commit0ad980c667d08f2a34a2eb6eb6cfddecf02b370c (patch)
treef4fff6cef08ff929c2404b62069a37df3b0fbf58 /sapi/apache_hooks/sapi_apache.c
parent6aaa7bc345b68e41f84501e98f571e0f7c9958f4 (diff)
downloadphp-git-0ad980c667d08f2a34a2eb6eb6cfddecf02b370c.tar.gz
fixed recurrent entrance to add_cgi_vars
Diffstat (limited to 'sapi/apache_hooks/sapi_apache.c')
-rw-r--r--sapi/apache_hooks/sapi_apache.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sapi/apache_hooks/sapi_apache.c b/sapi/apache_hooks/sapi_apache.c
index 29bd26483b..5991ad8d39 100644
--- a/sapi/apache_hooks/sapi_apache.c
+++ b/sapi/apache_hooks/sapi_apache.c
@@ -71,7 +71,6 @@ int apache_php_module_hook(request_rec *r, php_handler *handler, zval **ret TSRM
signal(SIGCHLD, sigchld_handler);
#endif
if(AP(current_hook) == AP_RESPONSE) {
- fprintf(stderr, "in Response\n");
if (php_request_startup_for_hook(TSRMLS_C) == FAILURE)
return FAILURE;
}
@@ -104,7 +103,6 @@ int apache_php_module_hook(request_rec *r, php_handler *handler, zval **ret TSRM
ZVAL_STRING(class, handler->name, 1);
ALLOC_ZVAL(method);
ZVAL_STRING(method, tmp +2, 1);
- fprintf(stderr, "calling coderef %s::%s\n", handler->name, tmp +2);
*tmp = ':';
call_user_function_ex(EG(function_table), &class, method, ret, 0, NULL, 0, NULL TSRMLS_CC);
zval_dtor(&class);