summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormark <mark>2012-01-04 21:09:49 +0000
committermark <mark>2012-01-04 21:09:49 +0000
commitbdec1f077dfb7138a0df035b6f501bcb1f09024e (patch)
tree7eabbc3f5de24e4b9d189c25fc7957f2811349ca
parentb7246032b50e32cbaee568f9c846e8a83cc7aba3 (diff)
fix non-usage invoice details, fallout from #15535
-rw-r--r--FS/FS/cust_bill_pkg.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_bill_pkg.pm b/FS/FS/cust_bill_pkg.pm
index 7406eda..1a99f6a 100644
--- a/FS/FS/cust_bill_pkg.pm
+++ b/FS/FS/cust_bill_pkg.pm
@@ -360,7 +360,7 @@ sub regularize_details {
# then turn it into one
my %hash = ();
if ( ! ref($detail) ) {
- $hash{'detail'} = 'detail';
+ $hash{'detail'} = $detail;
}
elsif ( ref($detail) eq 'HASH' ) {
%hash = %$detail;