From e88ec7fdc2ea995c669a26af39be0edc46065f8b Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 4 Aug 2019 04:26:24 -0400 Subject: [PATCH] add debugging fatal error --- Bugzilla/Config.pm | 2 ++ 1 file changed, 2 insertions(+) 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; } -- 2.47.2