From: ivan Date: Wed, 9 Aug 2006 07:03:43 +0000 (+0000) Subject: this is not my beautiful magic template! (water flowing underground) X-Git-Tag: BEFORE_FINAL_MASONIZE~47 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=cea76425e837641044923ac3622a2d0a35e4cfb2 this is not my beautiful magic template! (water flowing underground) --- 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'};