From 0247cadb339f3aee8dad1fc6bb319a2d3b8cb448 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 6 Oct 2005 23:07:27 +0000 Subject: [PATCH] use default logo if the agent-specific one isn't found --- httemplate/view/cust_bill-logo.cgi | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/httemplate/view/cust_bill-logo.cgi b/httemplate/view/cust_bill-logo.cgi index a1c9ddcf6..96471ffc6 100755 --- a/httemplate/view/cust_bill-logo.cgi +++ b/httemplate/view/cust_bill-logo.cgi @@ -3,8 +3,11 @@ my($query) = $cgi->keywords; $query =~ /^([^\.\/]*)$/; my $templatename = $1; -$templatename = "_$templatename" - if $templatename && $conf->exists("${logo}_$templatename.png"); +if ( $templatename && $conf->exists("${logo}_$templatename.png") ) { + $templatename = "_$templatename"; +} else { + $templatename = ''; +} my $conf = new FS::Conf; -- 2.20.1