summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Van Dam <rvandam00@gmail.com>2013-10-16 16:33:55 -0600
committerRob Van Dam <rvandam00@gmail.com>2013-10-16 16:33:55 -0600
commit428faf84539f398a088ce16aa16c8e77ed30343f (patch)
tree1596a595f6c1d5eb867c118b0b784d90dddb2c86
parentf035c5798a9b6e20fe4d5196cb1b2efdbd351b31 (diff)
Fixed setting of global variable that was missed in last commit
-rw-r--r--FS/FS/cust_pkg.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/FS/FS/cust_pkg.pm b/FS/FS/cust_pkg.pm
index 1b8a23c3d..8c4b7231a 100644
--- a/FS/FS/cust_pkg.pm
+++ b/FS/FS/cust_pkg.pm
@@ -48,9 +48,7 @@ use FS::svc_forward;
# for sending cancel emails in sub cancel
use FS::Conf;
-our ($disable_agentcheck, $DEBUG, $me) = (undef, 0, '[FS::cust_pkg]');
-
-$disable_agentcheck = 0;
+our ($disable_agentcheck, $DEBUG, $me) = (0, 0, '[FS::cust_pkg]');
sub _cache {
my $self = shift;