diff options
author | levinse <levinse> | 2011-06-02 05:07:39 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-06-02 05:07:39 +0000 |
commit | 549ea5ca46ce948b5de2653404e72ab72b541272 (patch) | |
tree | 73f5fe91de0df49c14d8eeaccfa03d873b726ff3 | |
parent | 8eb89d8b2e7610c16712e1ddff7d64e5524d511f (diff) |
fix regression in view/cust_main/contacts.html, RT13094
-rw-r--r-- | httemplate/view/cust_main/contacts.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html index 494012e39..63f33b6bd 100644 --- a/httemplate/view/cust_main/contacts.html +++ b/httemplate/view/cust_main/contacts.html @@ -19,9 +19,9 @@ </TR> % if ( $conf->exists('cust-email-high-visibility') && $which eq '') { <TR> - <TD ALIGN="right"><% mt('Email invoices') |h %></TD> + <TD ALIGN="right">Email invoices</TD> <TD BGCOLOR="#ffff00"> - <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %> + <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || 'no' %> </TD> </TR> % } @@ -126,7 +126,6 @@ my $stateid_state_label = FS::Msgcat::_gettext('stateid_state') =~ /^(stateid_st my( $cust_main ) = @_; my $conf = new FS::Conf; my @invoicing_list = $cust_main->invoicing_list; -my $no = emt('no'); </%init> |