Remove extra space in <html> from version="" stuff
This commit is contained in:
parent
e49286a897
commit
3bca1224aa
1 changed files with 2 additions and 2 deletions
|
|
@ -2105,8 +2105,8 @@ class OutputPage {
|
|||
# Much saner.
|
||||
$ret .= "<!doctype html>\n";
|
||||
}
|
||||
$ret .= "<html lang=\"$wgContLanguageCode\" dir=\"$dir\" ";
|
||||
if ( $wgHtml5Version ) $ret .= " version=\"$wgHtml5Version\" ";
|
||||
$ret .= "<html lang=\"$wgContLanguageCode\" dir=\"$dir\"";
|
||||
if ( $wgHtml5Version ) $ret .= " version=\"$wgHtml5Version\"";
|
||||
$ret .= ">\n";
|
||||
} else {
|
||||
$ret .= "<!DOCTYPE html PUBLIC \"$wgDocType\" \"$wgDTD\">\n";
|
||||
|
|
|
|||
Loading…
Reference in a new issue