diff options
author | ivan <ivan> | 2005-10-06 23:03:23 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-10-06 23:03:23 +0000 |
commit | b3010f33ef9485271d34e43a8ed6f30094451397 (patch) | |
tree | 718b4175275c528e9a4c86d50b3a088e58aaa001 | |
parent | de6b9e0d2faf9e92830a8977e1538838199aae63 (diff) |
use default logo if the agent-specific one isn't found
-rwxr-xr-x | httemplate/view/cust_bill-logo.cgi | 4 |
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") %> |