diff options
author | myk%mozilla.org <> | 2002-08-22 04:23:32 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2002-08-22 04:23:32 +0200 |
commit | 086def4fec205413893406108c2d9b2193b0438d (patch) | |
tree | 4ba58d8dfe02fc2f4721ed4409918275a3a5b0bb /template/en/default | |
parent | 26118155d8f712c5f43a735ca2c115154d023489 (diff) | |
download | bugzilla-086def4fec205413893406108c2d9b2193b0438d.tar.gz bugzilla-086def4fec205413893406108c2d9b2193b0438d.tar.xz |
Fix for bug 163541: Corrects problem with previous patch that causes primary headers not to appear on some installations.
2xr=bbaetz
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/global/header.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 6e7da2a16..889d63d0b 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -53,7 +53,7 @@ # mistakenly treats empty strings as undefined and gives h1 the # value of title anyway. To get around that problem we explicitly # set h1's default value here only if it is undefined. %] -[% h1 = title IF !h1.defined %] +[% IF !h1.defined %][% h1 = title %][% END %] <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> |