From: Dylan William Hardison Date: Sun, 4 Aug 2019 08:26:24 +0000 (-0400) Subject: add debugging fatal error X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F79%2Fhead;p=thirdparty%2Fbugzilla.git add debugging fatal error --- diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index 4e61063296..635e49dfec 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -341,6 +341,8 @@ sub read_param_file { die "The $file file does not exist." . ' You probably need to run checksetup.pl.',; } + die "the param utf8 must be set to utf8mb4" unless $params{utf8} eq 'utf8mb4'; + return \%params; }