diff options
author | mark <mark> | 2011-09-15 10:19:03 +0000 |
---|---|---|
committer | mark <mark> | 2011-09-15 10:19:03 +0000 |
commit | 62b12e8b09608b7081ffd596be899fafb5c2403f (patch) | |
tree | ea185e690b709c5e66365f24e039c86b3404b12b /httemplate/config/config-process.cgi | |
parent | 43af0ec176ff2ad5c4ecd60a58145f8370cc39d7 (diff) |
invoice template and config localization, #12367
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')); |