* (bug 22949) extra </html> at beginning of page
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 25 Mar 2010 18:31:29 +0000 (18:31 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Thu, 25 Mar 2010 18:31:29 +0000 (18:31 +0000)
CREDITS
includes/OutputPage.php

diff --git a/CREDITS b/CREDITS
index a4c38ad..27ec75f 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -86,6 +86,7 @@ following names for their contribution to the product.
 * Jimmy Xu
 * Karun Dambietz
 * Kim Hyun-Joon
+* Lee Worden
 * liangent
 * Lucas Garczewski
 * Louperivois
index 3685f5d..c87f1fc 100644 (file)
@@ -2118,7 +2118,7 @@ class OutputPage {
                        }
                        $this->addMeta( 'http:Content-Type', "$wgMimeType; charset=$wgOutputEncoding" );
                }
-               $ret .= Html::element( 'html', $htmlAttribs ) . "\n";
+               $ret .= Html::openElement( 'html', $htmlAttribs ) . "\n";
 
                $openHead = Html::openElement( 'head' );
                if ( $openHead ) {