From 1631b86eeb52c2f8dac560b7dc6893cdf56ce94c Mon Sep 17 00:00:00 2001 From: Dave Miller Date: Tue, 14 May 2024 02:03:46 -0400 Subject: Bug 1588175 - Undefined subroutine utf8::SWASHNEW called at Bugzilla/Util.pm line 109. (#182) Co-authored-by: Dylan Hardison --- Bugzilla.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bugzilla.pm b/Bugzilla.pm index e4772e08b..e8c078cf8 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. -- cgit v1.2.1