From: Ivan Kohler Date: Tue, 11 Jun 2013 06:20:23 +0000 (-0700) Subject: multi-currency, RT#21565 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=91893b441b4281d0384dbb783e67383d0ea5ead2 multi-currency, RT#21565 --- diff --git a/httemplate/search/cust_bill_pkg.cgi b/httemplate/search/cust_bill_pkg.cgi index b2ff45b09..7d9172aca 100644 --- a/httemplate/search/cust_bill_pkg.cgi +++ b/httemplate/search/cust_bill_pkg.cgi @@ -211,7 +211,7 @@ if ( $conf->config('currencies') ) { @currency_sub = ( map { my $what = $_; - sub { my $currency = $_[0]->get($what.'_billed_currency'); + sub { my $currency = $_[0]->get($what.'_billed_currency') or return ''; $currency. ' '. currency_symbol($currency, SYM_HTML). $_[0]->get($what.'_billed_amount'); };