Skip to content

Commit 698088c

Browse files
committed
Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2: Fix #78579: mb_decode_numericentity: args number inconsistency
2 parents e76dea4 + 398b308 commit 698088c

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ PHP NEWS
1010
. Fixed bug #78442 ('Illegal component' on exif_read_data since PHP7)
1111
(Kalle)
1212

13+
- MBString:
14+
. Fixed bug #78579 (mb_decode_numericentity: args number inconsistency).
15+
(cmb)
16+
1317
- Mysqlnd:
1418
. Fixed bug #78525 (Memory leak in pdo when reusing native prepared
1519
statements). (Nikita)

ext/mbstring/mbstring.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_mb_decode_numericentity, 0, 0, 2)
407407
ZEND_ARG_INFO(0, string)
408408
ZEND_ARG_INFO(0, convmap)
409409
ZEND_ARG_INFO(0, encoding)
410+
ZEND_ARG_INFO(0, is_hex)
410411
ZEND_END_ARG_INFO()
411412

412413
ZEND_BEGIN_ARG_INFO_EX(arginfo_mb_send_mail, 0, 0, 3)

0 commit comments

Comments
 (0)