diff options
-rw-r--r-- | FS/FS/cust_bill_pkg.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_bill_pkg.pm b/FS/FS/cust_bill_pkg.pm index 7406eda9a..1a99f6ad2 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; |