diff options
author | Brion Vibber <brion@users.mediawiki.org> | 2004-04-03 10:01:08 +0000 |
---|---|---|
committer | Brion Vibber <brion@users.mediawiki.org> | 2004-04-03 10:01:08 +0000 |
commit | 3d2a067e8c725d0ba16cabc6aeefff06f7e50571 (patch) | |
tree | b8281c0756370e1b7b743da1666910e2e394de20 /includes/Database.php | |
parent | b8530b5c75e5dddcd34a507d631ee0417582f395 (diff) | |
download | mediawikicore-3d2a067e8c725d0ba16cabc6aeefff06f7e50571.tar.gz mediawikicore-3d2a067e8c725d0ba16cabc6aeefff06f7e50571.zip |
HTML tweaks inching towards XHTML-friendly output. To test:
$wgMimeType = "text/xml";
$wgDocType = "-//W3C//DTD XHTML 1.0 Transitional//EN";
$wgDTD = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";
Mozilla will spit out angry erorrs at all the well-formedness errors.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/2945
Diffstat (limited to 'includes/Database.php')
-rw-r--r-- | includes/Database.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/Database.php b/includes/Database.php index 64cfbf11fa61..d3ed827068d8 100644 --- a/includes/Database.php +++ b/includes/Database.php @@ -466,7 +466,7 @@ function wfEmergencyAbort( &$conn ) { $cache = new CacheManager( $t ); if( $cache->isFileCached() ) { - $msg = "<p style='color: red'><b>$msg<br>\n" . + $msg = "<p style='color: red'><b>$msg<br />\n" . wfMsgNoDB( "cachederror" ) . "</b></p>\n"; $tag = "<div id='article'>"; |