diff options
author | David Houghton <houghton@freeside.biz> | 2014-09-10 15:52:31 -0400 |
---|---|---|
committer | David Houghton <houghton@freeside.biz> | 2014-09-10 16:04:18 -0400 |
commit | 4065dee1d04aa7ebd286a548c22455ce07b85340 (patch) | |
tree | 14d0ba428303bf628460c95d478d8c91c3e3b6f2 | |
parent | 8cfd5506cdf700e18f76f0bdff5fe5685144056e (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; } |