Merge "Avoid Call Stack warning when there is an error in the regex pattern"

This commit is contained in:
jenkins-bot 2017-11-03 20:01:30 +00:00 committed by Gerrit Code Review
commit b7b04cb830

View file

@ -231,7 +231,9 @@ class AFPData {
$pattern .= 'i';
}
MediaWiki\suppressWarnings();
$result = preg_match( $pattern, $str );
MediaWiki\restoreWarnings();
if ( $result === false ) {
throw new AFPUserVisibleException(
'regexfailure',