From: ivan Date: Mon, 14 Dec 2009 07:52:08 +0000 (+0000) Subject: use a global config too X-Git-Tag: root_of_svc_elec_features~623 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=557a6bdc1302aa7addd313327dcf62bbc0533429 use a global config too --- diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index 53b9fd682..649a78347 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -2014,14 +2014,14 @@ sub _op_overlimit { my $cust_pkg = $self->cust_svc->cust_pkg; - my $agent_overlimit = + my $conf_overlimit = $cust_pkg ? $conf->config('overlimit_groups', $cust_pkg->cust_main->agentnum ) - : ''; + : $conf->config('overlimit_groups'); foreach my $part_export ( $self->cust_svc->part_svc->part_export ) { - my $groups = $agent_overlimit || $part_export->option('overlimit_groups'); + my $groups = $conf_overlimit || $part_export->option('overlimit_groups'); next unless $groups; my $gref = &{ $self->_fieldhandlers->{'usergroup'} }( $self, $groups );