summaryrefslogtreecommitdiff
path: root/ext/standard/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/html.c')
-rw-r--r--ext/standard/html.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/html.c b/ext/standard/html.c
index 93b01b2f53..3063129503 100644
--- a/ext/standard/html.c
+++ b/ext/standard/html.c
@@ -43,7 +43,7 @@ static char EntTable[][7] =
"uuml","yacute","thorn","yuml"
};
-static void _php3_htmlentities(INTERNAL_FUNCTION_PARAMETERS, int all)
+static void php_html_entities(INTERNAL_FUNCTION_PARAMETERS, int all)
{
pval **arg;
int i, len, maxlen;
@@ -109,7 +109,7 @@ void register_html_constants(INIT_FUNC_ARGS)
Convert special characters to HTML entities */
PHP_FUNCTION(htmlspecialchars)
{
- _php3_htmlentities(INTERNAL_FUNCTION_PARAM_PASSTHRU,0);
+ php_html_entities(INTERNAL_FUNCTION_PARAM_PASSTHRU,0);
}
/* }}} */
@@ -117,7 +117,7 @@ PHP_FUNCTION(htmlspecialchars)
Convert all applicable characters to HTML entities */
PHP_FUNCTION(htmlentities)
{
- _php3_htmlentities(INTERNAL_FUNCTION_PARAM_PASSTHRU,1);
+ php_html_entities(INTERNAL_FUNCTION_PARAM_PASSTHRU,1);
}
/* }}} */