From 086def4fec205413893406108c2d9b2193b0438d Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Thu, 22 Aug 2002 02:23:32 +0000 Subject: Fix for bug 163541: Corrects problem with previous patch that causes primary headers not to appear on some installations. 2xr=bbaetz --- template/en/default/global/header.html.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %] -- cgit v1.2.3-24-g4f1b