Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
d15c41c6
Commit
d15c41c6
authored
Jul 04, 2006
by
mkanat%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 338375: Use Bugzilla->params everywhere instead of Param().
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
parent
b1f4cf8b
Hide whitespace changes
Inline
Side-by-side
Showing
57 changed files
with
9 additions
and
94 deletions
+9
-94
Attachment.pm
Bugzilla/Attachment.pm
+0
-1
Auth.pm
Bugzilla/Auth.pm
+0
-1
CGI.pm
Bugzilla/Auth/Login/CGI.pm
+0
-1
Env.pm
Bugzilla/Auth/Login/Env.pm
+0
-1
Cookie.pm
Bugzilla/Auth/Persist/Cookie.pm
+0
-1
LDAP.pm
Bugzilla/Auth/Verify/LDAP.pm
+0
-1
Bug.pm
Bugzilla/Bug.pm
+0
-1
BugMail.pm
Bugzilla/BugMail.pm
+0
-1
Config.pm
Bugzilla/Config.pm
+0
-35
DB.pm
Bugzilla/DB.pm
+1
-1
Flag.pm
Bugzilla/Flag.pm
+0
-1
FlagType.pm
Bugzilla/FlagType.pm
+0
-1
Mailer.pm
Bugzilla/Mailer.pm
+0
-1
Search.pm
Bugzilla/Search.pm
+0
-1
Quicksearch.pm
Bugzilla/Search/Quicksearch.pm
+0
-1
Template.pm
Bugzilla/Template.pm
+1
-2
Hook.pm
Bugzilla/Template/Plugin/Hook.pm
+0
-1
Token.pm
Bugzilla/Token.pm
+0
-1
User.pm
Bugzilla/User.pm
+0
-1
attachment.cgi
attachment.cgi
+1
-1
buglist.cgi
buglist.cgi
+0
-1
chart.cgi
chart.cgi
+0
-1
checksetup.pl
checksetup.pl
+1
-1
colchange.cgi
colchange.cgi
+0
-1
collectstats.pl
collectstats.pl
+0
-1
config.cgi
config.cgi
+0
-1
bug_email.pl
contrib/bug_email.pl
+1
-2
bugzilla_email_append.pl
contrib/bugzilla_email_append.pl
+0
-1
merge-users.pl
contrib/merge-users.pl
+0
-1
sendbugmail.pl
contrib/sendbugmail.pl
+1
-2
syncLDAP.pl
contrib/syncLDAP.pl
+0
-1
createaccount.cgi
createaccount.cgi
+0
-1
duplicates.cgi
duplicates.cgi
+0
-1
editclassifications.cgi
editclassifications.cgi
+0
-1
editcomponents.cgi
editcomponents.cgi
+0
-1
editgroups.cgi
editgroups.cgi
+1
-1
editparams.cgi
editparams.cgi
+1
-1
editproducts.cgi
editproducts.cgi
+0
-1
editusers.cgi
editusers.cgi
+0
-1
editvalues.cgi
editvalues.cgi
+1
-1
editwhines.cgi
editwhines.cgi
+0
-1
enter_bug.cgi
enter_bug.cgi
+0
-1
importxml.pl
importxml.pl
+0
-1
index.cgi
index.cgi
+0
-1
post_bug.cgi
post_bug.cgi
+0
-1
process_bug.cgi
process_bug.cgi
+0
-1
query.cgi
query.cgi
+0
-1
quips.cgi
quips.cgi
+0
-1
reports.cgi
reports.cgi
+0
-1
request.cgi
request.cgi
+0
-1
show_bug.cgi
show_bug.cgi
+0
-1
showdependencygraph.cgi
showdependencygraph.cgi
+0
-1
summarize_time.cgi
summarize_time.cgi
+0
-1
userprefs.cgi
userprefs.cgi
+0
-1
votes.cgi
votes.cgi
+0
-1
whine.pl
whine.pl
+0
-1
whineatnews.pl
whineatnews.pl
+0
-1
No files found.
Bugzilla/Attachment.pm
View file @
d15c41c6
...
...
@@ -50,7 +50,6 @@ that users upload to the Bugzilla server.
use
Bugzilla::
Constants
;
use
Bugzilla::
Error
;
use
Bugzilla::
Flag
;
use
Bugzilla::
Config
;
use
Bugzilla::
User
;
use
Bugzilla::
Util
qw(trick_taint)
;
...
...
Bugzilla/Auth.pm
View file @
d15c41c6
...
...
@@ -32,7 +32,6 @@ use fields qw(
use
Bugzilla::
Constants
;
use
Bugzilla::
Error
;
use
Bugzilla::
Config
;
use
Bugzilla::Auth::Login::
Stack
;
use
Bugzilla::Auth::Verify::
Stack
;
use
Bugzilla::Auth::Persist::
Cookie
;
...
...
Bugzilla/Auth/Login/CGI.pm
View file @
d15c41c6
...
...
@@ -33,7 +33,6 @@ use strict;
use
base
qw(Bugzilla::Auth::Login)
;
use
constant
user_can_create_account
=>
1
;
use
Bugzilla::
Config
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
...
...
Bugzilla/Auth/Login/Env.pm
View file @
d15c41c6
...
...
@@ -24,7 +24,6 @@ package Bugzilla::Auth::Login::Env;
use
strict
;
use
base
qw(Bugzilla::Auth::Login)
;
use
Bugzilla::
Config
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Error
;
...
...
Bugzilla/Auth/Persist/Cookie.pm
View file @
d15c41c6
...
...
@@ -32,7 +32,6 @@ package Bugzilla::Auth::Persist::Cookie;
use
strict
;
use
fields
qw()
;
use
Bugzilla::
Config
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Util
;
use
Bugzilla::
Token
;
...
...
Bugzilla/Auth/Verify/LDAP.pm
View file @
d15c41c6
...
...
@@ -35,7 +35,6 @@ use fields qw(
ldap
)
;
use
Bugzilla::
Config
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Error
;
...
...
Bugzilla/Bug.pm
View file @
d15c41c6
...
...
@@ -33,7 +33,6 @@ use strict;
use
CGI::
Carp
qw(fatalsToBrowser)
;
use
Bugzilla::
Attachment
;
use
Bugzilla::
Config
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Field
;
use
Bugzilla::
Flag
;
...
...
Bugzilla/BugMail.pm
View file @
d15c41c6
...
...
@@ -35,7 +35,6 @@ package Bugzilla::BugMail;
use
Bugzilla::
Error
;
use
Bugzilla::
User
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
;
use
Bugzilla::
Util
;
use
Bugzilla::
Bug
;
use
Bugzilla::
Product
;
...
...
Bugzilla/Config.pm
View file @
d15c41c6
...
...
@@ -35,9 +35,6 @@ use strict;
use
base
qw(Exporter)
;
use
Bugzilla::
Constants
;
# Module stuff
@
Bugzilla::Config::
EXPORT
=
qw(Param)
;
# Don't export localvars by default - people should have to explicitly
# ask for it, as a (probably futile) attempt to stop code using it
# when it shouldn't
...
...
@@ -92,28 +89,6 @@ sub 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
{
my
(
$name
,
$value
)
=
@_
;
...
...
@@ -277,11 +252,6 @@ Bugzilla::Config - Configuration parameters for Bugzilla
=head1 SYNOPSIS
# Getting parameters
use Bugzilla::Config;
my $fooSetting = Bugzilla->params->{'foo'};
# Administration functions
use Bugzilla::Config qw(:admin);
...
...
@@ -305,11 +275,6 @@ Parameters can be set, retrieved, and updated.
=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)>
Sets the param named $name to $value. Values are checked using the checker
...
...
Bugzilla/DB.pm
View file @
d15c41c6
...
...
@@ -35,7 +35,7 @@ use DBI;
# Inherit the DB class from DBI::db.
use
base
qw(DBI::db)
;
use
Bugzilla::
Config
qw(:
DEFAULT :
db)
;
use
Bugzilla::
Config
qw(:db)
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
...
...
Bugzilla/Flag.pm
View file @
d15c41c6
...
...
@@ -61,7 +61,6 @@ package Bugzilla::Flag;
use
Bugzilla::
FlagType
;
use
Bugzilla::
User
;
use
Bugzilla::
Config
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Mailer
;
...
...
Bugzilla/FlagType.pm
View file @
d15c41c6
...
...
@@ -59,7 +59,6 @@ use Bugzilla::User;
use
Bugzilla::
Error
;
use
Bugzilla::
Util
;
use
Bugzilla::
Config
;
######################################################################
# Global Variables
...
...
Bugzilla/Mailer.pm
View file @
d15c41c6
...
...
@@ -37,7 +37,6 @@ use base qw(Exporter);
@
Bugzilla::Mailer::
EXPORT
=
qw(MessageToMTA)
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
;
use
Bugzilla::
Util
;
use
Mail::
Header
;
...
...
Bugzilla/Search.pm
View file @
d15c41c6
...
...
@@ -34,7 +34,6 @@ package Bugzilla::Search;
use
base
qw(Exporter)
;
@
Bugzilla::Search::
EXPORT
=
qw(IsValidQueryType)
;
use
Bugzilla::
Config
;
use
Bugzilla::
Error
;
use
Bugzilla::
Util
;
use
Bugzilla::
Constants
;
...
...
Bugzilla/Search/Quicksearch.pm
View file @
d15c41c6
...
...
@@ -23,7 +23,6 @@ package Bugzilla::Search::Quicksearch;
# Make it harder for us to do dangerous things in Perl.
use
strict
;
use
Bugzilla::
Config
;
use
Bugzilla::
Error
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Keyword
;
...
...
Bugzilla/Template.pm
View file @
d15c41c6
...
...
@@ -35,7 +35,6 @@ package Bugzilla::Template;
use
strict
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
;
use
Bugzilla::
Util
;
use
Bugzilla::
User
;
use
Bugzilla::
Error
;
...
...
@@ -771,7 +770,7 @@ sub create {
# Default variables for all templates
VARIABLES
=>
{
# Function for retrieving global parameters.
'Param'
=>
\&
Bugzilla::Config::
Param
,
'Param'
=>
sub
{
return
Bugzilla
->
params
->
{
$_
[
0
]};
}
,
# Function to create date strings
'time2str'
=>
\&
Date::Format::
time2str
,
...
...
Bugzilla/Template/Plugin/Hook.pm
View file @
d15c41c6
...
...
@@ -25,7 +25,6 @@ package Bugzilla::Template::Plugin::Hook;
use
strict
;
use
Bugzilla::
Config
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Template
;
use
Bugzilla::
Util
;
...
...
Bugzilla/Token.pm
View file @
d15c41c6
...
...
@@ -29,7 +29,6 @@ use strict;
# Bundle the functions in this file together into the "Bugzilla::Token" package.
package
Bugzilla::
Token
;
use
Bugzilla::
Config
;
use
Bugzilla::
Error
;
use
Bugzilla::
Mailer
;
use
Bugzilla::
Util
;
...
...
Bugzilla/User.pm
View file @
d15c41c6
...
...
@@ -40,7 +40,6 @@ use strict;
# This module implements utilities for dealing with Bugzilla users.
package
Bugzilla::
User
;
use
Bugzilla::
Config
;
use
Bugzilla::
Error
;
use
Bugzilla::
Util
;
use
Bugzilla::
Constants
;
...
...
attachment.cgi
View file @
d15c41c6
...
...
@@ -38,7 +38,7 @@ use strict;
use
lib
qw(.)
;
use
Bugzilla
;
use
Bugzilla::
Config
qw(:
DEFAULT :
localconfig)
;
use
Bugzilla::
Config
qw(:localconfig)
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Error
;
use
Bugzilla::
Flag
;
...
...
buglist.cgi
View file @
d15c41c6
...
...
@@ -38,7 +38,6 @@ use Bugzilla;
use
Bugzilla::
Constants
;
use
Bugzilla::
Error
;
use
Bugzilla::
Util
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Search
;
use
Bugzilla::Search::
Quicksearch
;
use
Bugzilla::
User
;
...
...
chart.cgi
View file @
d15c41c6
...
...
@@ -47,7 +47,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Error
;
use
Bugzilla::
Util
;
use
Bugzilla::
Chart
;
...
...
checksetup.pl
View file @
d15c41c6
...
...
@@ -517,7 +517,7 @@ BEGIN {
$::ENV
{
'PATH'
}
=
$env
;
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
...
...
colchange.cgi
View file @
d15c41c6
...
...
@@ -27,7 +27,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Error
;
use
Bugzilla::
User
;
use
Bugzilla::
Keyword
;
...
...
collectstats.pl
View file @
d15c41c6
...
...
@@ -37,7 +37,6 @@ use lib ".";
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Search
;
use
Bugzilla::
User
;
...
...
config.cgi
View file @
d15c41c6
...
...
@@ -32,7 +32,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Error
;
use
Bugzilla::
Keyword
;
use
Bugzilla::
Bug
;
...
...
contrib/bug_email.pl
View file @
d15c41c6
...
...
@@ -38,7 +38,7 @@
#
# You need to work with bug_email.pl the MIME::Parser installed.
#
# $Id: bug_email.pl,v 1.4
3 2006/07/03 21:26:22
mkanat%bugzilla.org Exp $
# $Id: bug_email.pl,v 1.4
4 2006/07/03 21:42:47
mkanat%bugzilla.org Exp $
###############################################################
# 02/12/2000 (SML)
...
...
@@ -91,7 +91,6 @@ use lib "../";
use
Bugzilla
;
use
BugzillaEmail
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Util
;
use
Bugzilla::
BugMail
;
...
...
contrib/bugzilla_email_append.pl
View file @
d15c41c6
...
...
@@ -40,7 +40,6 @@ BEGIN {
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
BugzillaEmail
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
BugMail
;
my
$dbh
=
Bugzilla
->
dbh
;
...
...
contrib/merge-users.pl
View file @
d15c41c6
...
...
@@ -48,7 +48,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Getopt::
Long
;
...
...
contrib/sendbugmail.pl
View file @
d15c41c6
...
...
@@ -4,7 +4,7 @@
#
# 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
# bugmail for a bug which has been changed directly in the database.
...
...
@@ -17,7 +17,6 @@
use
lib
qw(.)
;
use
Bugzilla
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
BugMail
;
use
Bugzilla::
User
;
...
...
contrib/syncLDAP.pl
View file @
d15c41c6
...
...
@@ -26,7 +26,6 @@ use lib qw(.);
use
Net::
LDAP
;
use
Bugzilla
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
User
;
my
$cgi
=
Bugzilla
->
cgi
;
...
...
createaccount.cgi
View file @
d15c41c6
...
...
@@ -30,7 +30,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Error
;
use
Bugzilla::
User
;
use
Bugzilla::
BugMail
;
...
...
duplicates.cgi
View file @
d15c41c6
...
...
@@ -31,7 +31,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Search
;
...
...
editclassifications.cgi
View file @
d15c41c6
...
...
@@ -27,7 +27,6 @@ use Bugzilla;
use
Bugzilla::
Constants
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Classification
;
my
$cgi
=
Bugzilla
->
cgi
;
...
...
editcomponents.cgi
View file @
d15c41c6
...
...
@@ -31,7 +31,6 @@ use lib ".";
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Series
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
...
...
editgroups.cgi
View file @
d15c41c6
...
...
@@ -29,7 +29,7 @@ use lib ".";
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:
DEFAULT :
admin)
;
use
Bugzilla::
Config
qw(:admin)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Group
;
...
...
editparams.cgi
View file @
d15c41c6
...
...
@@ -27,7 +27,7 @@ use lib ".";
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:
DEFAULT :
admin)
;
use
Bugzilla::
Config
qw(:admin)
;
use
Bugzilla::Config::
Common
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
...
...
editproducts.cgi
View file @
d15c41c6
...
...
@@ -36,7 +36,6 @@ use lib ".";
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Bug
;
...
...
editusers.cgi
View file @
d15c41c6
...
...
@@ -25,7 +25,6 @@ use lib ".";
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
User
;
...
...
editvalues.cgi
View file @
d15c41c6
...
...
@@ -25,7 +25,7 @@ use Bugzilla;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:
DEFAULT :
admin)
;
use
Bugzilla::
Config
qw(:admin)
;
# List of different tables that contain the changeable field values
# (the old "enums.") Keep them in alphabetical order by their
...
...
editwhines.cgi
View file @
d15c41c6
...
...
@@ -31,7 +31,6 @@ use lib ".";
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
User
;
...
...
enter_bug.cgi
View file @
d15c41c6
...
...
@@ -39,7 +39,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Bug
;
...
...
importxml.pl
View file @
d15c41c6
...
...
@@ -79,7 +79,6 @@ use Bugzilla::Version;
use
Bugzilla::
Component
;
use
Bugzilla::
Milestone
;
use
Bugzilla::
FlagType
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
BugMail
;
use
Bugzilla::
Mailer
;
use
Bugzilla::
User
;
...
...
index.cgi
View file @
d15c41c6
...
...
@@ -33,7 +33,6 @@ use lib ".";
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Error
;
use
Bugzilla::
Update
;
...
...
post_bug.cgi
View file @
d15c41c6
...
...
@@ -30,7 +30,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Attachment
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Bug
;
...
...
process_bug.cgi
View file @
d15c41c6
...
...
@@ -45,7 +45,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Bug
;
use
Bugzilla::
Mailer
;
use
Bugzilla::
User
;
...
...
query.cgi
View file @
d15c41c6
...
...
@@ -31,7 +31,6 @@ use lib ".";
use
Bugzilla
;
use
Bugzilla::
Bug
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Search
;
use
Bugzilla::
User
;
use
Bugzilla::
Util
;
...
...
quips.cgi
View file @
d15c41c6
...
...
@@ -29,7 +29,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
User
;
...
...
reports.cgi
View file @
d15c41c6
...
...
@@ -39,7 +39,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
...
...
request.cgi
View file @
d15c41c6
...
...
@@ -31,7 +31,6 @@ use strict;
use
lib
qw(.)
;
use
Bugzilla
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Flag
;
...
...
show_bug.cgi
View file @
d15c41c6
...
...
@@ -26,7 +26,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Error
;
use
Bugzilla::
User
;
use
Bugzilla::
Keyword
;
...
...
showdependencygraph.cgi
View file @
d15c41c6
...
...
@@ -29,7 +29,6 @@ use File::Temp;
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Bug
;
...
...
summarize_time.cgi
View file @
d15c41c6
...
...
@@ -25,7 +25,6 @@ use Date::Format; # strftime
use
Bugzilla
;
use
Bugzilla::
Constants
;
# LOGIN_*
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Bug
;
# EmitDependList
use
Bugzilla::
Util
;
# trim
use
Bugzilla::
Error
;
...
...
userprefs.cgi
View file @
d15c41c6
...
...
@@ -28,7 +28,6 @@ use lib qw(.);
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Search
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
...
...
votes.cgi
View file @
d15c41c6
...
...
@@ -29,7 +29,6 @@ use lib ".";
use
Bugzilla
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Util
;
use
Bugzilla::
Error
;
use
Bugzilla::
Bug
;
...
...
whine.pl
View file @
d15c41c6
...
...
@@ -29,7 +29,6 @@ use strict;
use
lib
"."
;
use
Bugzilla
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Constants
;
use
Bugzilla::
Search
;
use
Bugzilla::
User
;
...
...
whineatnews.pl
View file @
d15c41c6
...
...
@@ -31,7 +31,6 @@ use strict;
use
lib
'.'
;
use
Bugzilla
;
use
Bugzilla::
Config
qw(:DEFAULT)
;
use
Bugzilla::
Mailer
;
use
Bugzilla::
Util
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment