Commit d15c41c6 authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Bug 338375: Use Bugzilla->params everywhere instead of Param().

Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
parent b1f4cf8b
...@@ -50,7 +50,6 @@ that users upload to the Bugzilla server. ...@@ -50,7 +50,6 @@ that users upload to the Bugzilla server.
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Flag; use Bugzilla::Flag;
use Bugzilla::Config;
use Bugzilla::User; use Bugzilla::User;
use Bugzilla::Util qw(trick_taint); use Bugzilla::Util qw(trick_taint);
......
...@@ -32,7 +32,6 @@ use fields qw( ...@@ -32,7 +32,6 @@ use fields qw(
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Config;
use Bugzilla::Auth::Login::Stack; use Bugzilla::Auth::Login::Stack;
use Bugzilla::Auth::Verify::Stack; use Bugzilla::Auth::Verify::Stack;
use Bugzilla::Auth::Persist::Cookie; use Bugzilla::Auth::Persist::Cookie;
......
...@@ -33,7 +33,6 @@ use strict; ...@@ -33,7 +33,6 @@ use strict;
use base qw(Bugzilla::Auth::Login); use base qw(Bugzilla::Auth::Login);
use constant user_can_create_account => 1; use constant user_can_create_account => 1;
use Bugzilla::Config;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
......
...@@ -24,7 +24,6 @@ package Bugzilla::Auth::Login::Env; ...@@ -24,7 +24,6 @@ package Bugzilla::Auth::Login::Env;
use strict; use strict;
use base qw(Bugzilla::Auth::Login); use base qw(Bugzilla::Auth::Login);
use Bugzilla::Config;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Error; use Bugzilla::Error;
......
...@@ -32,7 +32,6 @@ package Bugzilla::Auth::Persist::Cookie; ...@@ -32,7 +32,6 @@ package Bugzilla::Auth::Persist::Cookie;
use strict; use strict;
use fields qw(); use fields qw();
use Bugzilla::Config;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Token; use Bugzilla::Token;
......
...@@ -35,7 +35,6 @@ use fields qw( ...@@ -35,7 +35,6 @@ use fields qw(
ldap ldap
); );
use Bugzilla::Config;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Error; use Bugzilla::Error;
......
...@@ -33,7 +33,6 @@ use strict; ...@@ -33,7 +33,6 @@ use strict;
use CGI::Carp qw(fatalsToBrowser); use CGI::Carp qw(fatalsToBrowser);
use Bugzilla::Attachment; use Bugzilla::Attachment;
use Bugzilla::Config;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Field; use Bugzilla::Field;
use Bugzilla::Flag; use Bugzilla::Flag;
......
...@@ -35,7 +35,6 @@ package Bugzilla::BugMail; ...@@ -35,7 +35,6 @@ package Bugzilla::BugMail;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::User; use Bugzilla::User;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Bug; use Bugzilla::Bug;
use Bugzilla::Product; use Bugzilla::Product;
......
...@@ -35,9 +35,6 @@ use strict; ...@@ -35,9 +35,6 @@ use strict;
use base qw(Exporter); use base qw(Exporter);
use Bugzilla::Constants; use Bugzilla::Constants;
# Module stuff
@Bugzilla::Config::EXPORT = qw(Param);
# Don't export localvars by default - people should have to explicitly # Don't export localvars by default - people should have to explicitly
# ask for it, as a (probably futile) attempt to stop code using it # ask for it, as a (probably futile) attempt to stop code using it
# when it shouldn't # when it shouldn't
...@@ -92,28 +89,6 @@ sub param_panels { ...@@ -92,28 +89,6 @@ sub param_panels {
return @param_panels; return @param_panels;
} }
sub Param {
my ($param) = @_;
_load_params unless %params;
my %param_values = %{Bugzilla->params};
# By this stage, the param must be in the hash
die "Can't find param named $param" unless (exists $params{$param});
# When module startup code runs (which is does even via -c, when using
# |use|), we may try to grab params which don't exist yet. This affects
# tests, so have this as a fallback for the -c case
return $params{$param}->{default}
if ($^C && not exists $param_values{$param});
# If we have a value for the param, return it
return $param_values{$param} if exists $param_values{$param};
# Else error out
die "No value for param $param (try running checksetup.pl again)";
}
sub SetParam { sub SetParam {
my ($name, $value) = @_; my ($name, $value) = @_;
...@@ -277,11 +252,6 @@ Bugzilla::Config - Configuration parameters for Bugzilla ...@@ -277,11 +252,6 @@ Bugzilla::Config - Configuration parameters for Bugzilla
=head1 SYNOPSIS =head1 SYNOPSIS
# Getting parameters
use Bugzilla::Config;
my $fooSetting = Bugzilla->params->{'foo'};
# Administration functions # Administration functions
use Bugzilla::Config qw(:admin); use Bugzilla::Config qw(:admin);
...@@ -305,11 +275,6 @@ Parameters can be set, retrieved, and updated. ...@@ -305,11 +275,6 @@ Parameters can be set, retrieved, and updated.
=over 4 =over 4
=item C<Bugzilla->params->{$name}>
Returns the Param with the specified name. Either a string, or, in the case
of multiple-choice parameters, an array reference.
=item C<SetParam($name, $value)> =item C<SetParam($name, $value)>
Sets the param named $name to $value. Values are checked using the checker Sets the param named $name to $value. Values are checked using the checker
......
...@@ -35,7 +35,7 @@ use DBI; ...@@ -35,7 +35,7 @@ use DBI;
# Inherit the DB class from DBI::db. # Inherit the DB class from DBI::db.
use base qw(DBI::db); use base qw(DBI::db);
use Bugzilla::Config qw(:DEFAULT :db); use Bugzilla::Config qw(:db);
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
......
...@@ -61,7 +61,6 @@ package Bugzilla::Flag; ...@@ -61,7 +61,6 @@ package Bugzilla::Flag;
use Bugzilla::FlagType; use Bugzilla::FlagType;
use Bugzilla::User; use Bugzilla::User;
use Bugzilla::Config;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Mailer; use Bugzilla::Mailer;
......
...@@ -59,7 +59,6 @@ use Bugzilla::User; ...@@ -59,7 +59,6 @@ use Bugzilla::User;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Config;
###################################################################### ######################################################################
# Global Variables # Global Variables
......
...@@ -37,7 +37,6 @@ use base qw(Exporter); ...@@ -37,7 +37,6 @@ use base qw(Exporter);
@Bugzilla::Mailer::EXPORT = qw(MessageToMTA); @Bugzilla::Mailer::EXPORT = qw(MessageToMTA);
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config;
use Bugzilla::Util; use Bugzilla::Util;
use Mail::Header; use Mail::Header;
......
...@@ -34,7 +34,6 @@ package Bugzilla::Search; ...@@ -34,7 +34,6 @@ package Bugzilla::Search;
use base qw(Exporter); use base qw(Exporter);
@Bugzilla::Search::EXPORT = qw(IsValidQueryType); @Bugzilla::Search::EXPORT = qw(IsValidQueryType);
use Bugzilla::Config;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Constants; use Bugzilla::Constants;
......
...@@ -23,7 +23,6 @@ package Bugzilla::Search::Quicksearch; ...@@ -23,7 +23,6 @@ package Bugzilla::Search::Quicksearch;
# Make it harder for us to do dangerous things in Perl. # Make it harder for us to do dangerous things in Perl.
use strict; use strict;
use Bugzilla::Config;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Keyword; use Bugzilla::Keyword;
......
...@@ -35,7 +35,6 @@ package Bugzilla::Template; ...@@ -35,7 +35,6 @@ package Bugzilla::Template;
use strict; use strict;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::User; use Bugzilla::User;
use Bugzilla::Error; use Bugzilla::Error;
...@@ -771,7 +770,7 @@ sub create { ...@@ -771,7 +770,7 @@ sub create {
# Default variables for all templates # Default variables for all templates
VARIABLES => { VARIABLES => {
# Function for retrieving global parameters. # Function for retrieving global parameters.
'Param' => \&Bugzilla::Config::Param, 'Param' => sub { return Bugzilla->params->{$_[0]}; },
# Function to create date strings # Function to create date strings
'time2str' => \&Date::Format::time2str, 'time2str' => \&Date::Format::time2str,
......
...@@ -25,7 +25,6 @@ package Bugzilla::Template::Plugin::Hook; ...@@ -25,7 +25,6 @@ package Bugzilla::Template::Plugin::Hook;
use strict; use strict;
use Bugzilla::Config;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Template; use Bugzilla::Template;
use Bugzilla::Util; use Bugzilla::Util;
......
...@@ -29,7 +29,6 @@ use strict; ...@@ -29,7 +29,6 @@ use strict;
# Bundle the functions in this file together into the "Bugzilla::Token" package. # Bundle the functions in this file together into the "Bugzilla::Token" package.
package Bugzilla::Token; package Bugzilla::Token;
use Bugzilla::Config;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Mailer; use Bugzilla::Mailer;
use Bugzilla::Util; use Bugzilla::Util;
......
...@@ -40,7 +40,6 @@ use strict; ...@@ -40,7 +40,6 @@ use strict;
# This module implements utilities for dealing with Bugzilla users. # This module implements utilities for dealing with Bugzilla users.
package Bugzilla::User; package Bugzilla::User;
use Bugzilla::Config;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Constants; use Bugzilla::Constants;
......
...@@ -38,7 +38,7 @@ use strict; ...@@ -38,7 +38,7 @@ use strict;
use lib qw(.); use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Config qw(:DEFAULT :localconfig); use Bugzilla::Config qw(:localconfig);
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Flag; use Bugzilla::Flag;
......
...@@ -38,7 +38,6 @@ use Bugzilla; ...@@ -38,7 +38,6 @@ use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Search; use Bugzilla::Search;
use Bugzilla::Search::Quicksearch; use Bugzilla::Search::Quicksearch;
use Bugzilla::User; use Bugzilla::User;
......
...@@ -47,7 +47,6 @@ use lib qw(.); ...@@ -47,7 +47,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Chart; use Bugzilla::Chart;
......
...@@ -517,7 +517,7 @@ BEGIN { ...@@ -517,7 +517,7 @@ BEGIN {
$::ENV{'PATH'} = $env; $::ENV{'PATH'} = $env;
require Bugzilla::Config; require Bugzilla::Config;
import Bugzilla::Config qw(:DEFAULT :admin); import Bugzilla::Config qw(:admin);
} }
# 12/17/00 justdave@syndicomm.com - removed declarations of the localconfig # 12/17/00 justdave@syndicomm.com - removed declarations of the localconfig
......
...@@ -27,7 +27,6 @@ use lib qw(.); ...@@ -27,7 +27,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::User; use Bugzilla::User;
use Bugzilla::Keyword; use Bugzilla::Keyword;
......
...@@ -37,7 +37,6 @@ use lib "."; ...@@ -37,7 +37,6 @@ use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Search; use Bugzilla::Search;
use Bugzilla::User; use Bugzilla::User;
......
...@@ -32,7 +32,6 @@ use lib qw(.); ...@@ -32,7 +32,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Keyword; use Bugzilla::Keyword;
use Bugzilla::Bug; use Bugzilla::Bug;
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
# #
# You need to work with bug_email.pl the MIME::Parser installed. # You need to work with bug_email.pl the MIME::Parser installed.
# #
# $Id: bug_email.pl,v 1.43 2006/07/03 21:26:22 mkanat%bugzilla.org Exp $ # $Id: bug_email.pl,v 1.44 2006/07/03 21:42:47 mkanat%bugzilla.org Exp $
############################################################### ###############################################################
# 02/12/2000 (SML) # 02/12/2000 (SML)
...@@ -91,7 +91,6 @@ use lib "../"; ...@@ -91,7 +91,6 @@ use lib "../";
use Bugzilla; use Bugzilla;
use BugzillaEmail; use BugzillaEmail;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::BugMail; use Bugzilla::BugMail;
......
...@@ -40,7 +40,6 @@ BEGIN { ...@@ -40,7 +40,6 @@ BEGIN {
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use BugzillaEmail; use BugzillaEmail;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::BugMail; use Bugzilla::BugMail;
my $dbh = Bugzilla->dbh; my $dbh = Bugzilla->dbh;
......
...@@ -48,7 +48,6 @@ use lib qw(.); ...@@ -48,7 +48,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Getopt::Long; use Getopt::Long;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
# Nick Barnes, Ravenbrook Limited, 2004-04-01. # Nick Barnes, Ravenbrook Limited, 2004-04-01.
# #
# $Id: sendbugmail.pl,v 1.6 2006/07/03 21:26:22 mkanat%bugzilla.org Exp $ # $Id: sendbugmail.pl,v 1.7 2006/07/03 21:42:47 mkanat%bugzilla.org Exp $
# #
# Bugzilla email script for Bugzilla 2.17.4 and later. Invoke this to send # Bugzilla email script for Bugzilla 2.17.4 and later. Invoke this to send
# bugmail for a bug which has been changed directly in the database. # bugmail for a bug which has been changed directly in the database.
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
use lib qw(.); use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::BugMail; use Bugzilla::BugMail;
use Bugzilla::User; use Bugzilla::User;
......
...@@ -26,7 +26,6 @@ use lib qw(.); ...@@ -26,7 +26,6 @@ use lib qw(.);
use Net::LDAP; use Net::LDAP;
use Bugzilla; use Bugzilla;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::User; use Bugzilla::User;
my $cgi = Bugzilla->cgi; my $cgi = Bugzilla->cgi;
......
...@@ -30,7 +30,6 @@ use lib qw(.); ...@@ -30,7 +30,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::User; use Bugzilla::User;
use Bugzilla::BugMail; use Bugzilla::BugMail;
......
...@@ -31,7 +31,6 @@ use lib qw(.); ...@@ -31,7 +31,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Search; use Bugzilla::Search;
......
...@@ -27,7 +27,6 @@ use Bugzilla; ...@@ -27,7 +27,6 @@ use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Classification; use Bugzilla::Classification;
my $cgi = Bugzilla->cgi; my $cgi = Bugzilla->cgi;
......
...@@ -31,7 +31,6 @@ use lib "."; ...@@ -31,7 +31,6 @@ use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Series; use Bugzilla::Series;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
......
...@@ -29,7 +29,7 @@ use lib "."; ...@@ -29,7 +29,7 @@ use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT :admin); use Bugzilla::Config qw(:admin);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Group; use Bugzilla::Group;
......
...@@ -27,7 +27,7 @@ use lib "."; ...@@ -27,7 +27,7 @@ use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT :admin); use Bugzilla::Config qw(:admin);
use Bugzilla::Config::Common; use Bugzilla::Config::Common;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
......
...@@ -36,7 +36,6 @@ use lib "."; ...@@ -36,7 +36,6 @@ use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Bug; use Bugzilla::Bug;
......
...@@ -25,7 +25,6 @@ use lib "."; ...@@ -25,7 +25,6 @@ use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::User; use Bugzilla::User;
......
...@@ -25,7 +25,7 @@ use Bugzilla; ...@@ -25,7 +25,7 @@ use Bugzilla;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT :admin); use Bugzilla::Config qw(:admin);
# List of different tables that contain the changeable field values # List of different tables that contain the changeable field values
# (the old "enums.") Keep them in alphabetical order by their # (the old "enums.") Keep them in alphabetical order by their
......
...@@ -31,7 +31,6 @@ use lib "."; ...@@ -31,7 +31,6 @@ use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::User; use Bugzilla::User;
......
...@@ -39,7 +39,6 @@ use lib qw(.); ...@@ -39,7 +39,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Bug; use Bugzilla::Bug;
......
...@@ -79,7 +79,6 @@ use Bugzilla::Version; ...@@ -79,7 +79,6 @@ use Bugzilla::Version;
use Bugzilla::Component; use Bugzilla::Component;
use Bugzilla::Milestone; use Bugzilla::Milestone;
use Bugzilla::FlagType; use Bugzilla::FlagType;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::BugMail; use Bugzilla::BugMail;
use Bugzilla::Mailer; use Bugzilla::Mailer;
use Bugzilla::User; use Bugzilla::User;
......
...@@ -33,7 +33,6 @@ use lib "."; ...@@ -33,7 +33,6 @@ use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Update; use Bugzilla::Update;
......
...@@ -30,7 +30,6 @@ use lib qw(.); ...@@ -30,7 +30,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Attachment; use Bugzilla::Attachment;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Bug; use Bugzilla::Bug;
......
...@@ -45,7 +45,6 @@ use lib qw(.); ...@@ -45,7 +45,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Bug; use Bugzilla::Bug;
use Bugzilla::Mailer; use Bugzilla::Mailer;
use Bugzilla::User; use Bugzilla::User;
......
...@@ -31,7 +31,6 @@ use lib "."; ...@@ -31,7 +31,6 @@ use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Bug; use Bugzilla::Bug;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Search; use Bugzilla::Search;
use Bugzilla::User; use Bugzilla::User;
use Bugzilla::Util; use Bugzilla::Util;
......
...@@ -29,7 +29,6 @@ use lib qw(.); ...@@ -29,7 +29,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::User; use Bugzilla::User;
......
...@@ -39,7 +39,6 @@ use lib qw(.); ...@@ -39,7 +39,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
......
...@@ -31,7 +31,6 @@ use strict; ...@@ -31,7 +31,6 @@ use strict;
use lib qw(.); use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Flag; use Bugzilla::Flag;
......
...@@ -26,7 +26,6 @@ use lib qw(.); ...@@ -26,7 +26,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::User; use Bugzilla::User;
use Bugzilla::Keyword; use Bugzilla::Keyword;
......
...@@ -29,7 +29,6 @@ use File::Temp; ...@@ -29,7 +29,6 @@ use File::Temp;
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Bug; use Bugzilla::Bug;
......
...@@ -25,7 +25,6 @@ use Date::Format; # strftime ...@@ -25,7 +25,6 @@ use Date::Format; # strftime
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; # LOGIN_* use Bugzilla::Constants; # LOGIN_*
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Bug; # EmitDependList use Bugzilla::Bug; # EmitDependList
use Bugzilla::Util; # trim use Bugzilla::Util; # trim
use Bugzilla::Error; use Bugzilla::Error;
......
...@@ -28,7 +28,6 @@ use lib qw(.); ...@@ -28,7 +28,6 @@ use lib qw(.);
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Search; use Bugzilla::Search;
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
......
...@@ -29,7 +29,6 @@ use lib "."; ...@@ -29,7 +29,6 @@ use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Util; use Bugzilla::Util;
use Bugzilla::Error; use Bugzilla::Error;
use Bugzilla::Bug; use Bugzilla::Bug;
......
...@@ -29,7 +29,6 @@ use strict; ...@@ -29,7 +29,6 @@ use strict;
use lib "."; use lib ".";
use Bugzilla; use Bugzilla;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Constants; use Bugzilla::Constants;
use Bugzilla::Search; use Bugzilla::Search;
use Bugzilla::User; use Bugzilla::User;
......
...@@ -31,7 +31,6 @@ use strict; ...@@ -31,7 +31,6 @@ use strict;
use lib '.'; use lib '.';
use Bugzilla; use Bugzilla;
use Bugzilla::Config qw(:DEFAULT);
use Bugzilla::Mailer; use Bugzilla::Mailer;
use Bugzilla::Util; use Bugzilla::Util;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment