From cea76425e837641044923ac3622a2d0a35e4cfb2 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 9 Aug 2006 07:03:43 +0000 Subject: [PATCH] this is not my beautiful magic template! (water flowing underground) --- fs_selfservice/FS-SelfService/cgi/cust_bill-logo.cgi | 8 ++++---- 1 file 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'}; -- 2.11.0