From: Jani Taskinen Date: Fri, 7 Sep 2007 08:49:24 +0000 (+0000) Subject: MFH:- Fixed bug #42579 (apache_reset_timeout() does not exist) X-Git-Tag: php-5.2.5RC1~208 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fef2b33e851e3573cc523271fc4848dbc006a2dd;p=php MFH:- Fixed bug #42579 (apache_reset_timeout() does not exist) --- diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 99d338f151..ca424e3455 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -64,8 +64,9 @@ zend_function_entry apache_functions[] = { PHP_FE(apache_child_terminate, NULL) PHP_FE(apache_setenv, NULL) PHP_FE(apache_response_headers, NULL) - PHP_FE(apache_get_version, NULL) - PHP_FE(apache_get_modules, NULL) + PHP_FE(apache_get_version, NULL) + PHP_FE(apache_get_modules, NULL) + PHP_FE(apache_reset_timeout, NULL) PHP_FALIAS(getallheaders, apache_request_headers, NULL) {NULL, NULL, NULL} };