r53136 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r53135
|
r53136
|
r53137
>
Date:
16:58, 12 July 2009
Author:
simetrical
Status:
ok
Tags:
Comment:
Fix for
r53034
: left off \n on doctype
I knew it had to be impossible to change two lines without breaking
something. :)
Modified paths:
/trunk/phase3/includes/OutputPage.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/OutputPage.php
—
—
@@ -1562,7 +1562,7 @@
1563
1563
}
1564
1564
1565
1565
if ( $wgHtml5 ) {
1566
- $ret .= '<!doctype html>';
1566
+ $ret .= "<!doctype html>\n";
1567
1567
} else {
1568
1568
$ret .= "<!DOCTYPE html PUBLIC \"$wgDocType\" \"$wgDTD\">\n";
1569
1569
}
Follow-up revisions
Revision
Commit summary
Author
Date
r53137
Turn off $wgHtml5 by default...
simetrical
17:55, 12 July 2009
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r53034
Experimentally enable HTML 5 doctype...
simetrical
04:19, 10 July 2009
Status & tagging log
17:42, 22 August 2009
Brion VIBBER
(
talk
|
contribs
)
changed the
status
of r53136
[
removed:
new
added:
ok]