invoice template and config localization, #12367
[freeside.git] / httemplate / config / config-image.cgi
index 0de9d42..0e04ab5 100644 (file)
@@ -4,8 +4,6 @@
 die "access denied"
   unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
 
-my $conf = new FS::Conf;
-
 http_header( 'Content-Type' => 'image/png' ); #just png for now
 
 $cgi->param('key') =~ /^([-\w.]+)$/ or die "illegal config option";
@@ -16,6 +14,13 @@ if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
   $agentnum = $1;
 }
 
+my $locale = '';
+if ( $cgi->param('locale') =~ /^(\w+)$/ ) {
+  $locale = $1;
+}
+
+my $conf = new FS::Conf { 'locale' => $locale };
+
 my $logo = $conf->config_binary($name, $agentnum);
 $logo = eps2png($logo) if $name =~ /\.eps$/i;