MDL-52475 core: workaround PHP7 bug #70110 with preg_match

This commit is contained in:
Tony Levi 2015-12-11 08:27:26 +08:00 committed by Marina Glancy
parent 0dfcc2541a
commit 144fb5e0a0

View File

@ -709,6 +709,11 @@ ini_set('arg_separator.output', '&');
// Work around for a PHP bug see MDL-11237
ini_set('pcre.backtrack_limit', 20971520); // 20 MB
// Work around for PHP7 bug #70110. See MDL-52475 .
if (ini_get('pcre.jit')) {
ini_set('pcre.jit', 0);
}
// Set PHP default timezone to server timezone.
core_date::set_default_server_timezone();