diff options
author | jeff <jeff> | 2010-09-24 03:15:09 +0000 |
---|---|---|
committer | jeff <jeff> | 2010-09-24 03:15:09 +0000 |
commit | 4f6a747e8dc47310fcab3619eb541b9d5ba6dbed (patch) | |
tree | 6feaf2f4a24d17ad167a8845df8661a0e8994c94 | |
parent | 9763666a4eee2120c46b1decb8584b2c0d27ed12 (diff) |
fix bad bug in line item generation RT#10024
-rw-r--r-- | FS/FS/cust_main.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index bfdc51e8c..7a0c7d6c8 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -3215,7 +3215,7 @@ sub _make_lines { # If $cust_pkg has been modified, update it (if we're a real pkgpart) ### - if ( $lineitems || $options{has_hidden} ) { + if ( $lineitems ) { if ( $cust_pkg->modified && $cust_pkg->pkgpart == $real_pkgpart ) { # hmm.. and if just the options are modified in some weird price plan? |