diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2000-09-12 17:24:46 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2000-09-12 17:24:46 +0000 |
commit | 75d73aaffbbcc22d80abc4ae7b1c3fefb256c054 (patch) | |
tree | 5aeaa9f58234ea10e71d78c03d2dda873be09b2e /ext/standard/html.c | |
parent | d23ad61dc35f7cba54e2f893516edecdb38e66ea (diff) | |
download | php-git-75d73aaffbbcc22d80abc4ae7b1c3fefb256c054.tar.gz |
# missed proto comments
Diffstat (limited to 'ext/standard/html.c')
-rw-r--r-- | ext/standard/html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/html.c b/ext/standard/html.c index 6ac09effe6..f36a7c9c48 100644 --- a/ext/standard/html.c +++ b/ext/standard/html.c @@ -128,7 +128,7 @@ void register_html_constants(INIT_FUNC_ARGS) REGISTER_LONG_CONSTANT("ENT_NOQUOTES", ENT_NOQUOTES, CONST_PERSISTENT|CONST_CS); } -/* {{{ proto string htmlspecialchars(string string) +/* {{{ proto string htmlspecialchars(string string [, int quote_style]) Convert special characters to HTML entities */ PHP_FUNCTION(htmlspecialchars) { @@ -136,7 +136,7 @@ PHP_FUNCTION(htmlspecialchars) } /* }}} */ -/* {{{ proto string htmlentities(string string) +/* {{{ proto string htmlentities(string string [, int quote_style]) Convert all applicable characters to HTML entities */ PHP_FUNCTION(htmlentities) { |