summaryrefslogtreecommitdiff
path: root/ext/standard/html.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-12-18 04:01:20 +0000
committerZeev Suraski <zeev@php.net>1999-12-18 04:01:20 +0000
commit3ee4e65c95fa8eb5366569a22ffd6e09ce9741f1 (patch)
tree20bbcd96e0f6c1483c87a00273bcdc1ec94a097a /ext/standard/html.c
parent8a581c3536e1c4fab7ecfa4e1c044d3e5ebc5ab2 (diff)
downloadphp-git-3ee4e65c95fa8eb5366569a22ffd6e09ce9741f1.tar.gz
More php3_ annihilation
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);
}
/* }}} */