diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-02-27 01:54:27 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-02-27 01:54:27 -0800 |
commit | 0e5eacb11e6745871c9521e2d5e72da44f65e0f2 (patch) | |
tree | f958b500b5aae5738a78cc2fb88056be24abe6bb | |
parent | 1d0f88642d94e7bbc4861c7c08290967794883b3 (diff) |
refactor svc_acct and svc_broadband search into svc_Common, RT#21054
-rw-r--r-- | FS/FS/svc_Tower_Mixin.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/svc_Tower_Mixin.pm b/FS/FS/svc_Tower_Mixin.pm index 850805357..3da07c1cd 100644 --- a/FS/FS/svc_Tower_Mixin.pm +++ b/FS/FS/svc_Tower_Mixin.pm @@ -30,7 +30,7 @@ sub tower_sector_sql { my( $class, $params ) = @_; return () unless keys %$params; - my @where; + my @where = (); for my $field (qw(towernum sectornum)) { my $value = $params->{$field} or next; if ( ref $value and grep { $_ } @$value ) { |