diff options
author | Dave Miller <justdave@bugzilla.org> | 2024-05-14 02:03:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-14 02:03:46 -0400 |
commit | 1631b86eeb52c2f8dac560b7dc6893cdf56ce94c (patch) | |
tree | 798ecd241ca0b50a37aa94110e0902c9a1fd4c93 | |
parent | 7fa34b5a4c30632c406e869921bc187e31944e94 (diff) | |
download | bugs-1631b86eeb52c2f8dac560b7dc6893cdf56ce94c.tar bugs-1631b86eeb52c2f8dac560b7dc6893cdf56ce94c.tar.gz bugs-1631b86eeb52c2f8dac560b7dc6893cdf56ce94c.tar.bz2 bugs-1631b86eeb52c2f8dac560b7dc6893cdf56ce94c.tar.xz bugs-1631b86eeb52c2f8dac560b7dc6893cdf56ce94c.zip |
Bug 1588175 - Undefined subroutine utf8::SWASHNEW called at Bugzilla/Util.pm line 109. (#182)
Co-authored-by: Dylan Hardison <dylan@hardison.net>
-rw-r--r-- | Bugzilla.pm | 2 |
1 files changed, 2 insertions, 0 deletions
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. |