From 94f2a77931326fe285938714c19df357e699dd6d Mon Sep 17 00:00:00 2001 From: Rob Church Date: Tue, 25 Apr 2006 01:30:50 +0000 Subject: [PATCH] (bug 5611) Add a name attribute to the text box containing source text in read-only pages --- RELEASE-NOTES | 2 ++ includes/OutputPage.php | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) 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 ); } -- 2.20.1