From: Jani Taskinen Date: Fri, 7 Sep 2007 08:49:07 +0000 (+0000) Subject: - Fixed bug #42579 (apache_reset_timeout() does not exist) X-Git-Tag: RELEASE_2_0_0a1~1865 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf4bd5590b28f826c4beebe4c37c92bb80244a26;p=php - Fixed bug #42579 (apache_reset_timeout() does not exist) --- diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 83bf014610..868c4c3d9d 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} };