diff options
author | myk%mozilla.org <> | 2002-03-12 22:54:53 +0100 |
---|---|---|
committer | myk%mozilla.org <> | 2002-03-12 22:54:53 +0100 |
commit | 496013d2cc0586cde9db0ace761292594fcae995 (patch) | |
tree | 619f2c7f7f253ce069595b09865d1bfb3c33e0f0 /template/default/global | |
parent | 38551035718d027fb8794f56a15fe1bf5a63676b (diff) | |
download | bugzilla-496013d2cc0586cde9db0ace761292594fcae995.tar.gz bugzilla-496013d2cc0586cde9db0ace761292594fcae995.tar.xz |
Fix for bug 103778: Rewrites and templatizes buglist.cgi.
Patch by Myk Melez <myk@mozilla.org>.
r=bbaetz,gerv
Diffstat (limited to 'template/default/global')
-rwxr-xr-x | template/default/global/header | 9 | ||||
-rw-r--r-- | template/default/global/message.html.tmpl | 4 |
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 %] |