diff options
author | Fabien Villepinte <fabien.villepinte@gmail.com> | 2017-07-28 13:41:09 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2017-08-02 18:08:42 +0200 |
commit | 2cc1cbf2f424ce9d66fab00710f93409c75bf381 (patch) | |
tree | 679aa1eea69392494cdf245e71663c6613c4ef9a | |
parent | 15abb2b56ef7917c504611812143b2073f847403 (diff) | |
download | php-git-2cc1cbf2f424ce9d66fab00710f93409c75bf381.tar.gz |
Fix Bug #75001: Wrong reflection on mb_eregi_replace
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | ext/mbstring/mbstring.c | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -18,6 +18,8 @@ PHP NEWS (cmb) . Fixed bug #62934 (mb_convert_kana() does not convert iteration marks). (Nikita) + . Fixed bug #75001 (Wrong reflection on mb_eregi_replace). (Fabien + Villepinte) - MySQLi: . Fixed bug #74968 (PHP crashes when calling mysqli_result::fetch_object with diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index 72e285d34a..b5aadbfbe2 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -457,6 +457,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_mb_eregi_replace, 0, 0, 3) ZEND_ARG_INFO(0, pattern) ZEND_ARG_INFO(0, replacement) ZEND_ARG_INFO(0, string) + ZEND_ARG_INFO(0, option) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_mb_ereg_replace_callback, 0, 0, 3) |