diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-06-30 11:22:25 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-06-30 11:22:25 -0700 |
commit | ea5b53b9d78b3c3dbff5fb81aa2a16ba88d19d2f (patch) | |
tree | c4361edd33b06bf138a09219f02db86d3581985d | |
parent | 3209e0bdd610d4b5475782794bdfef1edd1038cd (diff) |
prevent unnecessary wrapping
-rw-r--r-- | httemplate/elements/contact.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/contact.html b/httemplate/elements/contact.html index 8936569ce..e1e4b6d90 100644 --- a/httemplate/elements/contact.html +++ b/httemplate/elements/contact.html @@ -165,7 +165,7 @@ tie my %label, 'Tie::IxHash', ; unless ($opt{'for_prospect'}) { - $label{'invoice_dest'} = 'Send invoices'; + $label{'invoice_dest'} = 'Send invoices'; $label{'selfservice_access'} = 'Self-service'; } |