diff options
Diffstat (limited to 'Bugzilla/Template.pm')
-rw-r--r-- | Bugzilla/Template.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index d981c7a59..d370627d3 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -79,6 +79,7 @@ sub getTemplateIncludePath () { if (not ($languages =~ /,/)) { return $template_include_path = ["$templatedir/$languages/custom", + "$templatedir/$languages/extension", "$templatedir/$languages/default"]; } my @languages = sortAcceptLanguage($languages); @@ -97,6 +98,7 @@ sub getTemplateIncludePath () { push(@usedlanguages, Param('defaultlanguage')); return $template_include_path = [map(("$templatedir/$_/custom", + "$templatedir/$_/extension", "$templatedir/$_/default"), @usedlanguages)]; } @@ -185,6 +187,9 @@ sub create { COMPILE_DIR => "$datadir/template", + # Initialize templates (f.e. by loading plugins like Hook). + PRE_PROCESS => "global/initialize.none.tmpl", + # Functions for processing text within templates in various ways. # IMPORTANT! When adding a filter here that does not override a # built-in filter, please also add a stub filter to checksetup.pl |