diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-01-18 14:39:58 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-01-18 14:39:58 -0800 |
commit | b236325052e32facaad168cbf0f370eebd4fd1f9 (patch) | |
tree | 3896f8f9bcd0d163e0d40f81680cafc840793733 | |
parent | 96623c3c471fda6935bd57efeaa0ad484285b74b (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 e4591720d..8199ba183 100644 --- a/FS/FS/svc_Common.pm +++ b/FS/FS/svc_Common.pm @@ -1384,7 +1384,7 @@ sub search { #custnum if ( $params->{'custnum'} =~ /^(\d+)$/ && $1 ) { - push @where, "custnum = $1"; + push @where, "cust_pkg.custnum = $1"; } #customer status |