summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2002-08-13 04:44:45 +0000
committerRasmus Lerdorf <rasmus@php.net>2002-08-13 04:44:45 +0000
commitf50df31d7f36bc3c17a8b12b7f24cb877c9d88c2 (patch)
tree9a489ed14cbac2e7e241d62ebb3ba54958fdbd29
parent3ffe4cb1ff682d3a24a472688b8448718e67bbce (diff)
downloadphp-git-f50df31d7f36bc3c17a8b12b7f24cb877c9d88c2.tar.gz
bool not boolean
-rw-r--r--ext/ldap/ldap.c2
-rw-r--r--ext/standard/basic_functions.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c
index 255705d371..54172eadc4 100644
--- a/ext/ldap/ldap.c
+++ b/ext/ldap/ldap.c
@@ -1928,7 +1928,7 @@ PHP_FUNCTION(ldap_parse_reference)
/* }}} */
#endif
-/* {{{ proto bool ldap_rename(resource link, string dn, string newrdn, string newparent, boolean deleteoldrdn);
+/* {{{ proto bool ldap_rename(resource link, string dn, string newrdn, string newparent, bool deleteoldrdn);
Modify the name of an entry */
PHP_FUNCTION(ldap_rename)
{
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c
index 823a2ab20c..13c970b967 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -2132,7 +2132,7 @@ PHP_FUNCTION(connection_status)
}
/* }}} */
-/* {{{ proto int ignore_user_abort(boolean value)
+/* {{{ proto int ignore_user_abort(bool value)
Set whether we want to ignore a user abort event or not */
PHP_FUNCTION(ignore_user_abort)
{
@@ -2466,7 +2466,7 @@ static void php_ini_parser_cb_with_sections(zval *arg1, zval *arg2, int callback
}
-/* {{{ proto array parse_ini_file(string filename [, boolean process_sections])
+/* {{{ proto array parse_ini_file(string filename [, bool process_sections])
Parse configuration file */
PHP_FUNCTION(parse_ini_file)
{