diff options
author | ivan <ivan> | 2004-03-23 19:57:09 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-03-23 19:57:09 +0000 |
commit | af09390b9db4a37b054b6fbc26e3122244bf84d5 (patch) | |
tree | 90ece06b02073c7b44d2f9b79c7e58e9bfade9ab | |
parent | ef158b1f6fc60f8e114bb01b82c3de0754fedef2 (diff) |
small UI fix for unapplied partial credits
-rwxr-xr-x | httemplate/view/cust_main.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/cust_main.cgi b/httemplate/view/cust_main.cgi index cc3600641..65247c04d 100755 --- a/httemplate/view/cust_main.cgi +++ b/httemplate/view/cust_main.cgi @@ -711,9 +711,9 @@ function cust_credit_areyousure(href) { } if ( $cust_credit->credited > 0 ) { $desc .= ' - <B><FONT COLOR="#FF0000">$'. - $cust_credit->unapplied. ' unapplied</FONT></B>'. + $cust_credit->credited. ' unapplied</FONT></B>'. qq! (<A HREF="${p}edit/cust_credit_bill.cgi?!. - $cust_credit->crednum. '">apply</A>'. + $cust_credit->crednum. '">apply</A>)'. '<BR>'; } } |