diff options
author | ivan <ivan> | 2003-11-11 08:01:53 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-11-11 08:01:53 +0000 |
commit | 55e79e7161afe27d0a247c83009ff80786f72f65 (patch) | |
tree | 57d3f45904748f294ee4c02b32c89fe0ce1dbd91 | |
parent | 82a49258658db6b0f9bd5ea6f9c191211c7cabc1 (diff) |
remove spaces between parens and contact name
-rwxr-xr-x | httemplate/search/report_receivables.cgi | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/httemplate/search/report_receivables.cgi b/httemplate/search/report_receivables.cgi index d0665164c..60abb12ab 100755 --- a/httemplate/search/report_receivables.cgi +++ b/httemplate/search/report_receivables.cgi @@ -97,9 +97,7 @@ END <% while ( my $row = $sth->fetchrow_hashref() ) { %> <TR> <TD><A HREF="<%= $p %>view/cust_main.cgi?<%= $row->{'custnum'} %>"> - <%= $row->{'company'} ? $row->{'company'}. ' (' : '' %> - <%= $row->{'last'}. ', '. $row->{'first'} %> - <%= $row->{'company'} ? ')' : '' %></A> + <%= $row->{'company'} ? $row->{'company'}. ' (' : '' %><%= $row->{'last'}. ', '. $row->{'first'} %><%= $row->{'company'} ? ')' : '' %></A> </TD> <TD ALIGN="right">$<%= sprintf("%.2f", $row->{'owed_0_30'} ) %></TD> <TD ALIGN="right">$<%= sprintf("%.2f", $row->{'owed_30_60'} ) %></TD> |