diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-01-18 14:40:00 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-01-18 14:40:00 -0800 |
commit | f82ca6d06518839408050aed4812fea1ba864ad3 (patch) | |
tree | df94ab481f4774e85097d565833158aeba31616d | |
parent | 90459fc5f9ea38ca9228bbe432792ca123ecd187 (diff) |
fully-qualify
-rw-r--r-- | FS/FS/svc_Common.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/svc_Common.pm b/FS/FS/svc_Common.pm index 9c2592213..fbb9df7c2 100644 --- a/FS/FS/svc_Common.pm +++ b/FS/FS/svc_Common.pm @@ -1394,7 +1394,7 @@ sub search { #custnum if ( $params->{'custnum'} =~ /^(\d+)$/ && $1 ) { - push @where, "custnum = $1"; + push @where, "cust_pkg.custnum = $1"; } #customer status |