Browse Source

- Fix docrefs

PHP-5
Derick Rethans 24 years ago
parent
commit
c175f3545c
  1. 4
      sapi/apache/php_apache.c

4
sapi/apache/php_apache.c

@ -120,11 +120,11 @@ PHP_FUNCTION(apache_child_terminate)
ap_child_terminate( ((request_rec *)SG(server_context)) ); ap_child_terminate( ((request_rec *)SG(server_context)) );
RETURN_TRUE; RETURN_TRUE;
} else { /* tell them to get lost! */ } 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; RETURN_FALSE;
} }
#else #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; RETURN_FALSE;
#endif #endif
} }

Loading…
Cancel
Save