diff options
author | Mark Wells <mark@freeside.biz> | 2015-09-10 16:36:28 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-09-10 16:37:37 -0700 |
commit | 312493fcefb373f7dc456c5d39edafc5af54d8b7 (patch) | |
tree | c90e900c3b7fa86755ef8f5eefae0f14de5bcef3 | |
parent | 9790fb2c499f1b003bf34bae102b3e855d15aada (diff) |
fix double "$", #37122
-rw-r--r-- | conf/invoice_latex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/invoice_latex b/conf/invoice_latex index 4df858d22..ceff84bd2 100644 --- a/conf/invoice_latex +++ b/conf/invoice_latex @@ -376,7 +376,7 @@ {' . $line->{'description'} . '}
{' . $line->{'quantity'} . '}
{' . $minutes . 'm ' . $seconds . 's' . '}
- {' . '\dollar' . $line->{'amount'} . '}';
+ {' . $line->{'amount'} . '}';
} else {
$OUT .= '\FSdesc'.
'{}'.
|