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
9500ea01
Commit
9500ea01
authored
May 05, 2010
by
Max Kanat-Alexander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 562551: Allow template-only extensions to work
r=mkanat, a=mkanat (module owner)
parent
62efd548
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
Util.pm
Bugzilla/Install/Util.pm
+12
-0
No files found.
Bugzilla/Install/Util.pm
View file @
9500ea01
...
...
@@ -418,6 +418,18 @@ sub _template_base_directories {
}
}
# Extensions may also contain *only* templates, in which case they
# won't show up in extension_requirement_packages.
foreach
my
$path
(
_extension_paths
())
{
next
if
!-
d
$path
;
if
(
!-
e
"$path/Extension.pm"
and
!-
e
"$path/Config.pm"
and
-
d
"$path/template"
)
{
push
(
@template_dirs
,
"$path/template"
);
}
}
push
(
@template_dirs
,
bz_locations
()
->
{
'templatedir'
});
return
\
@template_dirs
;
}
...
...
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