diff options
-rwxr-xr-x | phpBB/install/install_install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 1f2f10caec..0b4f94a5c2 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -187,7 +187,7 @@ class install_install extends module )); // Check for PCRE UTF-8 support - if (preg_match('//u', '')) + if (@preg_match('//u', '')) { $passed['pcre'] = true; $result = '<b style="color:green">' . $lang['YES'] . '</b>'; |