summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2007-09-07 08:49:07 +0000
committerJani Taskinen <jani@php.net>2007-09-07 08:49:07 +0000
commitcf4bd5590b28f826c4beebe4c37c92bb80244a26 (patch)
tree9eaa2c0e70a3d75d974d1b1b4136808896dbd163
parent1123fc81505166510edbde186536a5671535d8a2 (diff)
downloadphp-git-cf4bd5590b28f826c4beebe4c37c92bb80244a26.tar.gz
- Fixed bug #42579 (apache_reset_timeout() does not exist)
-rw-r--r--sapi/apache/php_apache.c5
1 files changed, 3 insertions, 2 deletions
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}
};