diff options
author | levinse <levinse> | 2011-05-21 16:43:28 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-05-21 16:43:28 +0000 |
commit | 93ec97f7d887bfd8e172f476edd8477546b5d597 (patch) | |
tree | a89a6f62fc6a685aa3c45c3c7505721439736e94 | |
parent | b017568f0d15d6756de1c04da19530462749469b (diff) |
fix regression caused by internationalization/localization, RT12515
-rw-r--r-- | httemplate/view/cust_main/payment_history/payment.html | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/httemplate/view/cust_main/payment_history/payment.html b/httemplate/view/cust_main/payment_history/payment.html index e0241cc8f..d7322a2d6 100644 --- a/httemplate/view/cust_main/payment_history/payment.html +++ b/httemplate/view/cust_main/payment_history/payment.html @@ -33,18 +33,26 @@ if ($conf->exists('cust_bill_pay_pkg-manual')) { my $apply = ''; +my $italicize_otaker = 0; my $otaker = $cust_pay->otaker; -$otaker = '<i>auto billing</i>' if $otaker eq 'fs_daily'; -$otaker = '<i>customer self-service</i>' if $otaker eq 'fs_selfservice'; +if ( $otaker eq 'fs_daily' ) { + $otaker = 'auto billing'; + $italicize_otaker = 1; +} +if ( $otaker eq 'fs_selfservice' ) { + $otaker = 'customer self-service'; + $italicize_otaker = 1; +} my $payment = emt("Payment by [_1]",$otaker); +$payment =~ s/$otaker/<i>$otaker<\/i>/ if $italicize_otaker; if ( scalar(@cust_bill_pay) == 0 && scalar(@cust_pay_refund) == 0 ) { #completely unapplied - $payment = '<B><FONT COLOR="#FF0000">' - . emt("Unapplied Payment by [_1]",$otaker) - . '</FONT></B>'; + $payment = emt("Unapplied Payment by [_1]",$otaker); + $payment =~ s/$otaker/<i>$otaker<\/i>/ if $italicize_otaker; + $payment = '<B><FONT COLOR="#FF0000">'.$payment.'</FONT></B>'; if ( $curuser->access_right('Apply payment') ) { if ( $cust_pay->cust_main->total_owed > 0 ) { $apply = ' ('. |