diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-01-18 15:11:44 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-01-18 15:11:44 -0800 |
commit | f5a77514d6816225b378ced1d598ba745d0c22b4 (patch) | |
tree | 3d02e21cfc05998b19b1c1a1f1edba87e301b9de | |
parent | 8f424b802b3f3c390df497fb67a8c6eb725ab670 (diff) |
qualify columns by default in 4.x (experiment?), RT#20688, RT#22232
-rw-r--r-- | FS/FS/cust_bill.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 07c33204e..d811c1af4 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -2629,6 +2629,7 @@ sub _did_summary { $num_activated++; } else { # this one not so clean, should probably move to (h_)svc_phone + local($FS::Record::qsearch_qualify_columns) = 0; my $phone_portedin = qsearchs( 'h_svc_phone', { 'svcnum' => $h_cust_svc->svcnum, 'lnp_status' => 'portedin' }, |