diff options
author | Mark Wells <mark@freeside.biz> | 2016-06-28 19:20:05 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-06-28 19:20:05 -0700 |
commit | 1cd1ff1b70d85b94987b7aab19863c4e6dc008ff (patch) | |
tree | 743ee0591367d78ed66828a8e3310b378c55e4bf | |
parent | c663e377fd2c5089e7364b1144248edbaab76fe4 (diff) |
fix warning
-rw-r--r-- | FS/FS/cust_main_Mixin.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main_Mixin.pm b/FS/FS/cust_main_Mixin.pm index adf8c7194..195574627 100644 --- a/FS/FS/cust_main_Mixin.pm +++ b/FS/FS/cust_main_Mixin.pm @@ -663,7 +663,7 @@ sub unsuspend_balance { my $self = shift; my $cust_main = $self->cust_main; my $conf = $self->conf; - my $setting = $conf->config('unsuspend_balance'); + my $setting = $conf->config('unsuspend_balance') or return; my $maxbalance; if ($setting eq 'Zero') { $maxbalance = 0; |