this is not my beautiful magic template! (water flowing underground)
authorivan <ivan>
Wed, 9 Aug 2006 07:03:43 +0000 (07:03 +0000)
committerivan <ivan>
Wed, 9 Aug 2006 07:03:43 +0000 (07:03 +0000)
fs_selfservice/FS-SelfService/cgi/cust_bill-logo.cgi

index bf82a87..e353b44 100644 (file)
@@ -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'};