summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config/General.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-07-13 00:20:25 +0200
committerGitHub <noreply@github.com>2018-07-13 00:20:25 +0200
commita671f4ebe0f80686d9d98d51c754a07f4bb68d31 (patch)
treeddec19fe13f75475c2c7c86b212134a93f6d33ad /Bugzilla/Config/General.pm
parente671c6b2bd6ef20f357ed710377258a730e268a3 (diff)
downloadbugzilla-a671f4ebe0f80686d9d98d51c754a07f4bb68d31.tar.gz
bugzilla-a671f4ebe0f80686d9d98d51c754a07f4bb68d31.tar.xz
Bug 1328659 - Add support for utf8=utf8mb4 (switches to dynamic/compressed row format, and changes charset to utf8mb4)
Diffstat (limited to 'Bugzilla/Config/General.pm')
-rw-r--r--Bugzilla/Config/General.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/Bugzilla/Config/General.pm b/Bugzilla/Config/General.pm
index 9d85aecaf..15688dfd3 100644
--- a/Bugzilla/Config/General.pm
+++ b/Bugzilla/Config/General.pm
@@ -33,8 +33,9 @@ use constant get_param_list => (
{
name => 'utf8',
- type => 'b',
- default => '0',
+ type => 's',
+ choices => [ '1', 'utf8', 'utf8mb4' ],
+ default => 'utf8',
checker => \&check_utf8
},