summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fs_selfservice/FS-SelfService/cgi/cust_bill-logo.cgi8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/cust_bill-logo.cgi b/fs_selfservice/FS-SelfService/cgi/cust_bill-logo.cgi
index bf82a87e8..e353b4489 100644
--- a/fs_selfservice/FS-SelfService/cgi/cust_bill-logo.cgi
+++ b/fs_selfservice/FS-SelfService/cgi/cust_bill-logo.cgi
@@ -4,15 +4,15 @@ use strict;
use CGI;
use FS::SelfService qw( invoice_logo );
-$cgi = new CGI;
+my $cgi = new CGI;
my($query) = $cgi->keywords;
$query =~ /^([^\.\/]*)$/ or '' =~ /^()$/;
my $templatename = $1;
-invoice_logo($templatename);
+my $hashref = invoice_logo($templatename);
-print $cgi->header( '-type' => $content_type,
+print $cgi->header( '-type' => $hashref->{'content_type'},
'-expires' => 'now',
).
- $logo;
+ $hashref->{'logo'};