summaryrefslogtreecommitdiff
path: root/ext/standard/html.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-17 21:16:27 +0200
committerAnatol Belski <ab@php.net>2014-08-17 21:16:27 +0200
commitf2182ab845236a112ff63bcb8752b07943c999f1 (patch)
tree9ddc4c61f2108be91a4bae56ba8848bdd5d8eaa9 /ext/standard/html.c
parent41115d3d9dc1f7116ac2d1bb7087a24098885a03 (diff)
downloadphp-git-f2182ab845236a112ff63bcb8752b07943c999f1.tar.gz
some more pure naming replacements
Diffstat (limited to 'ext/standard/html.c')
-rw-r--r--ext/standard/html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/html.c b/ext/standard/html.c
index e729c1245d..abb15f2440 100644
--- a/ext/standard/html.c
+++ b/ext/standard/html.c
@@ -1456,7 +1456,7 @@ static void php_html_entities(INTERNAL_FUNCTION_PARAMETERS, int all)
ZEND_PARSE_PARAMETERS_START(1, 4)
Z_PARAM_STR(str)
Z_PARAM_OPTIONAL
- Z_PARAM_LONG(flags)
+ Z_PARAM_INT(flags)
Z_PARAM_STR_EX(hint_charset, 1, 0)
Z_PARAM_BOOL(double_encode);
ZEND_PARSE_PARAMETERS_END();
@@ -1540,7 +1540,7 @@ PHP_FUNCTION(html_entity_decode)
ZEND_PARSE_PARAMETERS_START(1, 3)
Z_PARAM_STR(str)
Z_PARAM_OPTIONAL
- Z_PARAM_LONG(quote_style)
+ Z_PARAM_INT(quote_style)
Z_PARAM_STR(hint_charset)
ZEND_PARSE_PARAMETERS_END();
#endif