summaryrefslogtreecommitdiff
path: root/httemplate/view
diff options
context:
space:
mode:
authorivan <ivan>2005-10-06 23:03:23 +0000
committerivan <ivan>2005-10-06 23:03:23 +0000
commitb3010f33ef9485271d34e43a8ed6f30094451397 (patch)
tree718b4175275c528e9a4c86d50b3a088e58aaa001 /httemplate/view
parentde6b9e0d2faf9e92830a8977e1538838199aae63 (diff)
use default logo if the agent-specific one isn't found
Diffstat (limited to 'httemplate/view')
-rwxr-xr-xhttemplate/view/cust_bill-logo.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/cust_bill-logo.cgi b/httemplate/view/cust_bill-logo.cgi
index 50812ea10..a1c9ddcf6 100755
--- a/httemplate/view/cust_bill-logo.cgi
+++ b/httemplate/view/cust_bill-logo.cgi
@@ -3,10 +3,10 @@
my($query) = $cgi->keywords;
$query =~ /^([^\.\/]*)$/;
my $templatename = $1;
-$templatename = "_$templatename" if $templatename;
+$templatename = "_$templatename"
+ if $templatename && $conf->exists("${logo}_$templatename.png");
my $conf = new FS::Conf;
-http_header('Content-Type' => 'image/png' );
http_header('Content-Type' => 'image/png' );
%><%= $conf->config_binary("logo$templatename.png") %>