diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-08-21 13:51:10 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-08-21 13:51:10 -0700 |
commit | 3c755c5662be8bfe62a646b5e5ea2e2aae3143d8 (patch) | |
tree | 9f236c26cc3d3f769dc0e4be5e5cae82cbe90b9f | |
parent | 74264d593e365fd864769a48cf69aa46246a97c3 (diff) |
mobile numbers searchable, RT#18840
-rw-r--r-- | FS/FS/cust_main/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main/Search.pm b/FS/FS/cust_main/Search.pm index 2d347e140..7b2f30dc4 100644 --- a/FS/FS/cust_main/Search.pm +++ b/FS/FS/cust_main/Search.pm @@ -85,7 +85,7 @@ sub smart_search { 'extra_sql' => ( scalar(keys %options) ? ' AND ' : ' WHERE ' ). ' ( '. join(' OR ', map "$_ = '$phonen'", - qw( daytime night fax ) + qw( daytime night mobile fax ) ). ' ) '. " AND $agentnums_sql", #agent virtualization |