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
55312f69
Commit
55312f69
authored
Mar 10, 2010
by
Max Kanat-Alexander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 550966: Syntax errors in extensions' Extension.pm were causing "deep
recursion on subroutine" errors. r=mkanat, a=mkanat (module owner)
parent
ef49edd7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
Util.pm
Bugzilla/Install/Util.pm
+7
-1
No files found.
Bugzilla/Install/Util.pm
View file @
55312f69
...
...
@@ -153,7 +153,13 @@ sub extension_requirement_packages {
# Bugzilla::Extension->load_all (because stuff has already been loaded).
# (This matters because almost every page calls Bugzilla->feature, which
# calls OPTIONAL_MODULES, which calls this method.)
if
(
eval
{
Bugzilla
->
extensions
})
{
#
# We check if Bugzilla.pm is already loaded, instead of doing a "require",
# because we *do* want the code lower down to run during the Requirements
# phase of checksetup.pl, instead of Bugzilla->extensions, and Bugzilla.pm
# actually *can* be loaded during the Requirements phase if all the
# requirements have already been installed.
if
(
$INC
{
'Bugzilla.pm'
})
{
return
Bugzilla
->
extensions
;
}
my
$packages
=
_cache
()
->
{
extension_requirement_packages
};
...
...
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