diff options
Diffstat (limited to 'httemplate/view/cust_bill-logo.cgi')
-rwxr-xr-x | httemplate/view/cust_bill-logo.cgi | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/httemplate/view/cust_bill-logo.cgi b/httemplate/view/cust_bill-logo.cgi new file mode 100755 index 000000000..3e9c67fcc --- /dev/null +++ b/httemplate/view/cust_bill-logo.cgi @@ -0,0 +1,15 @@ +<% + +##untaint invnum +#my($query) = $cgi->keywords; +#$query =~ /^((.+)-)?(\d+)$/; +#my $templatename = $2; +#my $invnum = $3; + +my $templatename = ''; + +my $conf = new FS::Conf; +http_header('Content-Type' => 'image/png' ); + +http_header('Content-Type' => 'image/png' ); +%><%= $conf->config_binary("logo$templatename.png") %> |