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:38:38 -0700 |
commit | 20f815589dca77a20a5338c2afc1bbd573c4b0bc (patch) | |
tree | aacc1b4298149f406089aafdface57fa29eeb755 | |
parent | f023ced4d618137a5e2f1d3d519d23ecdeb7fc7d (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'.
'{}'.
|