diff options
author | David Houghton <houghton@freeside.biz> | 2014-09-10 15:52:31 -0400 |
---|---|---|
committer | David Houghton <houghton@freeside.biz> | 2014-09-10 15:52:31 -0400 |
commit | 15b214cb34630925ff42e4252b74403fff77e7c0 (patch) | |
tree | b902576e83749c7dd94d9dd2120c3aa5935feb5e | |
parent | 6912944a9959e4046b095fbd378f5545c2caca9e (diff) |
ticket: 28287; adding parens to sprintf
Mark didn't like the sprintf without parens, so I'm fixing it.
-rw-r--r-- | FS/FS/part_pkg/discount_Mixin.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_pkg/discount_Mixin.pm b/FS/FS/part_pkg/discount_Mixin.pm index 3bff35a92..0063567dd 100644 --- a/FS/FS/part_pkg/discount_Mixin.pm +++ b/FS/FS/part_pkg/discount_Mixin.pm @@ -183,7 +183,7 @@ sub calc_discount { } push @$details, $d; - push @$details, sprintf $format, $money_char, $br; + push @$details, sprintf( $format, $money_char, $br ); $tot_discount += $amount; } |