diff options
author | Derick Rethans <derick@php.net> | 2003-01-03 21:33:31 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2003-01-03 21:33:31 +0000 |
commit | c175f3545c6b66232d3a7a78e53a12cddd64184b (patch) | |
tree | 353e36115dd1f76e0126cc15b3bc25478f3368d6 /sapi/apache | |
parent | 0127c07e4543e589603aaed75c07e42e02747936 (diff) | |
download | php-git-c175f3545c6b66232d3a7a78e53a12cddd64184b.tar.gz |
- Fix docrefs
Diffstat (limited to 'sapi/apache')
-rw-r--r-- | sapi/apache/php_apache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 3b2fd50109..5e5c95d216 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -120,11 +120,11 @@ PHP_FUNCTION(apache_child_terminate) ap_child_terminate( ((request_rec *)SG(server_context)) ); RETURN_TRUE; } else { /* tell them to get lost! */ - php_error_docref(NULL TSRMLS_CC, E_WARNING, "apache_child_terminate is disabled"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "This function is disabled"); RETURN_FALSE; } #else - php_error_docref(NULL TSRMLS_CC, E_WARNING, "apache_child_terminate() is not supported in this build"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "This function is not supported in this build"); RETURN_FALSE; #endif } |