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.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/ext/standard/html.c b/ext/standard/html.c
index 2df5658d35..c06329c8e3 100644
--- a/ext/standard/html.c
+++ b/ext/standard/html.c
@@ -1087,9 +1087,6 @@ empty_source:
}
/* }}} */
-
-
-
/* {{{ php_escape_html_entities
*/
PHPAPI char *php_escape_html_entities_ex(unsigned char *old, int oldlen, int *newlen, int all, int quote_style, char *hint_charset, zend_bool double_encode TSRMLS_DC)
@@ -1219,10 +1216,11 @@ encode_amp:
}
/* }}} */
-PHPAPI char *php_escape_html_entities(char *old, int oldlen, int *newlen, int all, int quote_style, char *hint_charset TSRMLS_DC)
+PHPAPI char *php_escape_html_entities(char *old, int oldlen, int *newlen, int all, int quote_style, char *hint_charset TSRMLS_DC) /* {{{ */
{
return php_escape_html_entities_ex((unsigned char*)old, oldlen, newlen, all, quote_style, hint_charset, 1 TSRMLS_CC);
}
+/* }}} */
/* {{{ php_html_entities
*/
@@ -1410,7 +1408,6 @@ PHP_FUNCTION(html_entity_decode)
}
/* }}} */
-
/* {{{ proto string htmlentities(string string [, int quote_style[, string charset[, bool double_encode]]])
Convert all applicable characters to HTML entities */
PHP_FUNCTION(htmlentities)