From: Rob Church Date: Tue, 25 Apr 2006 01:30:50 +0000 (+0000) Subject: (bug 5611) Add a name attribute to the text box containing source text in read-only... X-Git-Tag: 1.31.0-rc.0~57376 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22auteur_infos%22%2C%20%22id_auteur=%24id%22%29%20.%20%22?a=commitdiff_plain;h=94f2a77931326fe285938714c19df357e699dd6d;p=lhc%2Fweb%2Fwiklou.git (bug 5611) Add a name attribute to the text box containing source text in read-only pages --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index aecb7687f9..15640856e5 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -118,6 +118,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 5497) regeression in HTML normalization in 1.6 (unclosed
  • ,
    ,
    ) * (bug 5709) Allow customisation of separator for categories * (bug 5684) Introduce Special:Randomredirect +* (bug 5611) Add a name attribute to the text box containing source text in + read-only pages == Compatibility == diff --git a/includes/OutputPage.php b/includes/OutputPage.php index f4b83b1367..4d7cf9cdc0 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -834,7 +834,8 @@ class OutputPage { } $rows = $wgUser->getOption( 'rows' ); $cols = $wgUser->getOption( 'cols' ); - $text = "\n"; $this->addHTML( $text ); }