diff options
author | Mark Wells <mark@freeside.biz> | 2014-11-21 16:32:37 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2014-11-21 16:33:40 -0800 |
commit | a3b7282fda1955c41e97b619ba4e27af39e8afaf (patch) | |
tree | aa32560393e1776d38ffb4e898d69992b2646a72 /FS/FS | |
parent | 173ef24d37ae35594f2cafdca50673657ce1c455 (diff) |
fix several UI nits in FCC 477 report configuration, #24047
Diffstat (limited to 'FS/FS')
-rw-r--r-- | FS/FS/Report/FCC_477.pm | 4 |
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; |