diff options
Diffstat (limited to 'httemplate')
-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> |