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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
0f9e4c38
Commit
0f9e4c38
authored
Sep 04, 2002
by
bbaetz%student.usyd.edu.au
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 166318 - Bugzilla::Config should check for defparams.pl failure
r=joel x2
parent
4a4b3647
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
Config.pm
Bugzilla/Config.pm
+5
-1
No files found.
Bugzilla/Config.pm
View file @
0f9e4c38
...
...
@@ -130,7 +130,11 @@ sub _load_datafiles {
_load_datafiles
();
# Load in the param defintions
do
'defparams.pl'
;
unless
(
my
$ret
=
do
'defparams.pl'
)
{
die
"Couldn't parse defparams.pl: $@"
if
$@
;
die
"Couldn't do defparams.pl: $!"
unless
defined
$ret
;
die
"Couldn't run defparams.pl"
unless
$ret
;
}
# Stick the params into a hash
my
%
params
;
...
...
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