diff options
Diffstat (limited to 'httemplate/config/config-process.cgi')
| -rw-r--r-- | httemplate/config/config-process.cgi | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/httemplate/config/config-process.cgi b/httemplate/config/config-process.cgi index 4a84c0dd1..c62a8c784 100644 --- a/httemplate/config/config-process.cgi +++ b/httemplate/config/config-process.cgi @@ -25,7 +25,7 @@  %  }  %  %} else { -<% header('Configuration set') %> +<& /elements/header.html, 'Configuration set' &>    <SCRIPT TYPE="text/javascript">  %   my $n = 0;  %   foreach my $type ( ref($i->type) ? @{$i->type} : $i->type ) { @@ -103,7 +103,9 @@ my %namecol = (  my $curuser = $FS::CurrentUser::CurrentUser;  die "access denied\n" unless $curuser->access_right('Configuration'); -my $conf = new FS::Conf; +my $locale = $cgi->param('locale') || ''; + +my $conf = new FS::Conf { 'locale' => $locale };  if ( $conf->exists('disable_settings_changes') ) {    my @changers = split(/\s*,\s*/, $conf->config('disable_settings_changes'));  | 
