From: Moriyoshi Koizumi Date: Tue, 21 Jan 2003 22:09:55 +0000 (+0000) Subject: MFH: reverted the wrong patch X-Git-Tag: PHP_4_3_before_13561_fix~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba1e0fbf4678ccd1b38ef963b6d745317e99d9be;p=php MFH: reverted the wrong patch --- diff --git a/ext/mbstring/php_mbregex.c b/ext/mbstring/php_mbregex.c index 08a81bff50..b4c12142e1 100644 --- a/ext/mbstring/php_mbregex.c +++ b/ext/mbstring/php_mbregex.c @@ -574,7 +574,7 @@ _php_mb_regex_ereg_replace_exec(INTERNAL_FUNCTION_PARAMETERS, int option) Replace regular expression for multibyte string */ PHP_FUNCTION(mb_ereg_replace) { - _php_mb_regex_ereg_replace_exec(INTERNAL_FUNCTION_PARAM_PASSTHRU, MBSTRG(regex_default_options)); + _php_mb_regex_ereg_replace_exec(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); } /* }}} */ @@ -582,7 +582,7 @@ PHP_FUNCTION(mb_ereg_replace) Case insensitive replace regular expression for multibyte string */ PHP_FUNCTION(mb_eregi_replace) { - _php_mb_regex_ereg_replace_exec(INTERNAL_FUNCTION_PARAM_PASSTHRU, MBRE_OPTION_IGNORECASE | MBSTRG(regex_default_options)); + _php_mb_regex_ereg_replace_exec(INTERNAL_FUNCTION_PARAM_PASSTHRU, MBRE_OPTION_IGNORECASE); } /* }}} */