summaryrefslogtreecommitdiffstats
path: root/template/default/global
diff options
context:
space:
mode:
Diffstat (limited to 'template/default/global')
-rwxr-xr-xtemplate/default/global/header9
-rw-r--r--template/default/global/message.html.tmpl4
2 files changed, 11 insertions, 2 deletions
diff --git a/template/default/global/header b/template/default/global/header
index 627a52571..05afe2bed 100755
--- a/template/default/global/header
+++ b/template/default/global/header
@@ -11,14 +11,23 @@
<html>
<head>
<title>[% title %]</title>
+
[% Param('headerhtml') %]
+
[% jscript %]
+
[% IF style %]
<style type="text/css">
[% style %]
</style>
[% END %]
+
+ [% IF style_url %]
+ <link href="[% style_url %]" rel="stylesheet" type="text/css" />
+ [% END %]
+
</head>
+
<body [% Param('bodyhtml') %][% " " %][% extra %]>
[% PerformSubsts(Param('bannerhtml')) %]
diff --git a/template/default/global/message.html.tmpl b/template/default/global/message.html.tmpl
index 03253242a..912e9f322 100644
--- a/template/default/global/message.html.tmpl
+++ b/template/default/global/message.html.tmpl
@@ -1,6 +1,6 @@
[% DEFAULT title = "Bugzilla Message" %]
-[% INCLUDE global/header title=title %]
+[% PROCESS global/header %]
[%# The "header" template automatically displays the contents of a "message"
variable if it finds one, so it is not necessary to display the message
@@ -13,4 +13,4 @@
</p>
[% END %]
-[% INCLUDE global/footer %]
+[% PROCESS global/footer %]