Fix for bug 107120: templates/default/global/header was generating HTML that…

Fix for bug 107120: templates/default/global/header was generating HTML that wouldn't validate as HTML 4.01 Transitional Patch by Dave Miller <justdave@syndicomm.com> r= jake, bbaetz
parent 4a6aa8a0
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
style = "" style = ""
message = "" message = ""
%] %]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <html>
<head> <head>
<title>[% title %]</title> <title>[% title %]</title>
...@@ -17,14 +17,14 @@ ...@@ -17,14 +17,14 @@
[% style %] [% style %]
</style> </style>
</head> </head>
<body [% Param('bodyhtml') %] [% extra %]> <body [% Param('bodyhtml') %][% " " %][% extra %]>
[% PerformSubsts(Param('bannerhtml')) %] [% PerformSubsts(Param('bannerhtml')) %]
[% IF h1 || h2 %] [% IF h1 || h2 %]
<table border="0" cellspacing="0" width="100%"> <table border="0" cellspacing="0">
<tr> <tr>
<td width="10%" valign="top" align="left"> <td valign="top" align="left">
<table border="0" cellpadding="0" cellspacing="2"> <table border="0" cellpadding="0" cellspacing="2">
<tr> <tr>
<td valign="top" align="left" nowrap> <td valign="top" align="left" nowrap>
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
</tr> </tr>
</table> </table>
</td> </td>
<td valign="center">&nbsp;</td> <td valign="middle">&nbsp;</td>
<td valign="center" align="left">[% h2 %]</td> <td valign="middle" align="left">[% h2 %]</td>
</tr> </tr>
</table> </table>
[% END %] [% END %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment