summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-06-10 23:20:23 -0700
committerIvan Kohler <ivan@freeside.biz>2013-06-10 23:20:23 -0700
commit91893b441b4281d0384dbb783e67383d0ea5ead2 (patch)
treed70750a753ce7ed54cfceaac0219e73e78df6ef2 /httemplate
parentb7a2175dd9b386441f4ab66869d73083e5e8beb1 (diff)
multi-currency, RT#21565
Diffstat (limited to 'httemplate')
-rw-r--r--httemplate/search/cust_bill_pkg.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/cust_bill_pkg.cgi b/httemplate/search/cust_bill_pkg.cgi
index b2ff45b..7d9172a 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');
};