From: myk%mozilla.org <> Date: Thu, 22 Aug 2002 02:23:32 +0000 (+0000) Subject: Fix for bug 163541: Corrects problem with previous patch that causes primary headers... X-Git-Tag: bugzilla-2.17.1~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=086def4fec205413893406108c2d9b2193b0438d;p=thirdparty%2Fbugzilla.git Fix for bug 163541: Corrects problem with previous patch that causes primary headers not to appear on some installations. 2xr=bbaetz --- diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 6e7da2a168..889d63d0b3 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 %]