summaryrefslogtreecommitdiff
path: root/httemplate/edit/msg_template.html
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2015-06-25 00:51:02 -0500
committerJonathan Prykop <jonathan@freeside.biz>2015-07-03 21:11:46 -0500
commitc112a7e56557acce5a54d3b57e4cdbab7c43ecc5 (patch)
tree25847f595da1d7e781350a245d1582cbe480161e /httemplate/edit/msg_template.html
parent0be0b02db98ed06dabe51805fe45b2e9704327b8 (diff)
RT#34078: Payment History Report / Statement
Diffstat (limited to 'httemplate/edit/msg_template.html')
-rw-r--r--httemplate/edit/msg_template.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/httemplate/edit/msg_template.html b/httemplate/edit/msg_template.html
index a1026fed3..c6b2a7d8d 100644
--- a/httemplate/edit/msg_template.html
+++ b/httemplate/edit/msg_template.html
@@ -210,7 +210,6 @@ my %substitutions = (
'$company_address'=> 'Our company address',
'$company_phonenum' => 'Our phone number',
'$selfservice_server_base_url' => 'Base URL of customer self-service',
- '$payment_history' => 'List of invoices/payments/credits/refunds',
],
'contact' => [ # duplicate this for shipping
'$name' => 'Company and contact name',
@@ -323,7 +322,7 @@ my $widget = new HTML::Widgets::SelectLayers(
my @hints = @{ $substitutions{$section} };
while(@hints) {
my $key = shift @hints;
- $html .= qq!\n<TR><TD STYLE="padding-right: .25em;"><A href="javascript:insertHtml('{$key}')">$key</A></TD>!;
+ $html .= qq!\n<TR><TD><A href="javascript:insertHtml('{$key}')">$key</A></TD>!;
$html .= "\n<TD>".shift(@hints).'</TD></TR>';
}
$html .= "\n</TABLE>";