summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2014-11-21 16:33:04 -0800
committerMark Wells <mark@freeside.biz>2014-11-21 16:33:28 -0800
commit6cc3e679908ad79f0080960d30b1cab689326a07 (patch)
treefec0f56cfb47846515a173fd7d33fa75152d9c98 /FS
parent24f7fad2612dcbe97b1cfaadf45f8f57d4a534c8 (diff)
fix several UI nits in FCC 477 report configuration, #24047
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/Report/FCC_477.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Report/FCC_477.pm b/FS/FS/Report/FCC_477.pm
index ff29d1953..f5d6a06ec 100644
--- a/FS/FS/Report/FCC_477.pm
+++ b/FS/FS/Report/FCC_477.pm
@@ -4,14 +4,13 @@ use base qw( FS::Report );
use strict;
use vars qw( @upload @download @technology @part2aoption @part2boption
%states
- $DEBUG
);
use FS::Record qw( dbh );
use Tie::IxHash;
use Storable;
-$DEBUG = 0;
+our $DEBUG = 0;
=head1 NAME
@@ -305,6 +304,7 @@ sub report {
unless $class->can($method);
my $statement = $class->$method(%opt);
+ warn $statement if $DEBUG;
my $sth = dbh->prepare($statement);
$sth->execute or die $sth->errstr;
$sth->fetchall_arrayref;