diff options
-rw-r--r-- | ext/posix/posix.c | 2 | ||||
-rw-r--r-- | ext/standard/basic_functions.c | 3 | ||||
-rw-r--r-- | ext/standard/html.c | 2 | ||||
-rw-r--r-- | ext/tidy/tidy.c | 2 |
4 files changed, 6 insertions, 3 deletions
diff --git a/ext/posix/posix.c b/ext/posix/posix.c index 4d1d0be371..c4c75c5f8a 100644 --- a/ext/posix/posix.c +++ b/ext/posix/posix.c @@ -1064,7 +1064,7 @@ PHP_FUNCTION(posix_strerror) #endif #ifdef HAVE_INITGROUPS -/* {{{ proto bool initgroups(string name, int base_group_id) +/* {{{ proto bool posix_initgroups(string name, int base_group_id) Calculate the group access list for the user specified in name. */ PHP_FUNCTION(posix_initgroups) { diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 78bfea7ed9..720c532ae1 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -6295,6 +6295,8 @@ PHP_FUNCTION(import_request_variables) /* }}} */ #ifdef HAVE_GETLOADAVG +/* {{{ proto array sys_getloadavg() + */ PHP_FUNCTION(sys_getloadavg) { double load[3]; @@ -6308,6 +6310,7 @@ PHP_FUNCTION(sys_getloadavg) add_index_double(return_value, 2, load[2]); } } +/* }}} */ #endif diff --git a/ext/standard/html.c b/ext/standard/html.c index 02b2608112..fdb0eb4fef 100644 --- a/ext/standard/html.c +++ b/ext/standard/html.c @@ -1221,7 +1221,7 @@ PHP_FUNCTION(htmlspecialchars) } /* }}} */ -/* {{{ proto string htmlspecialchars(string string [, int quote_style]) +/* {{{ proto string htmlspecialchars_decode(string string [, int quote_style]) Convert special HTML entities back to characters */ PHP_FUNCTION(htmlspecialchars_decode) { diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c index 6d5221ef4c..6668eeda68 100644 --- a/ext/tidy/tidy.c +++ b/ext/tidy/tidy.c @@ -1312,7 +1312,7 @@ static PHP_FUNCTION(tidy_is_xhtml) } /* }}} */ -/* {{{ proto boolean tidy_is_xhtml() +/* {{{ proto boolean tidy_is_xml() Indicates if the document is a generic (non HTML/XHTML) XML document. */ static PHP_FUNCTION(tidy_is_xml) { |