diff options
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-x | checksetup.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/checksetup.pl b/checksetup.pl index d38fb5441..d8e920a6d 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -47,6 +47,7 @@ use 5.008; use File::Basename; use Getopt::Long qw(:config bundling); use Pod::Usage; +use POSIX qw(setlocale LC_CTYPE); use Safe; BEGIN { chdir dirname($0); } @@ -130,6 +131,10 @@ require Bugzilla::Install; Bugzilla->usage_mode(USAGE_MODE_CMDLINE); +# When we're running at the command line, we need to pick the right +# language before ever creating a template object. +$ENV{'HTTP_ACCEPT_LANGUAGE'} ||= setlocale(LC_CTYPE); + ########################################################################### # Check and update --LOCAL-- configuration ########################################################################### |