From f86fcf1fe9c9969cb486bba0a75d56540f58061e Mon Sep 17 00:00:00 2001 From: Dylan Hardison Date: Fri, 8 May 2020 23:31:40 -0400 Subject: [PATCH] Bug 1588175 - Undefined subroutine utf8::SWASHNEW called at Bugzilla/Util.pm line 109. --- Bugzilla.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bugzilla.pm b/Bugzilla.pm index 2aefeb766f..403e3de597 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -11,6 +11,8 @@ use 5.10.1; use strict; use warnings; +BEGIN { eval { utf8->import; require 'utf8_heavy.pl' }; } + # We want any compile errors to get to the browser, if possible. BEGIN { # This makes sure we're in a CGI. -- 2.47.3