From f50df31d7f36bc3c17a8b12b7f24cb877c9d88c2 Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Tue, 13 Aug 2002 04:44:45 +0000 Subject: [PATCH] bool not boolean --- ext/ldap/ldap.c | 2 +- ext/standard/basic_functions.c | 4 ++-- 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) { -- 2.50.1