From 8680e7a1e33361c41fa3c5a7970ab6106e32a42f Mon Sep 17 00:00:00 2001 From: Rob Church Date: Thu, 9 Aug 2007 20:02:04 +0000 Subject: [PATCH] Fix XHTML --- RELEASE-NOTES | 3 ++- includes/SpecialUndelete.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 53011cc20e..f2cad9610a 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -368,12 +368,13 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN sort keys to work on Safari * (bug 4530) Fix local name of Kurdish language * (bug 10830) Fix local name Haitian Creole language -* Fix comments in contributions and log pages for RTL languages +* Fix comments in contributions and log pages for right-to-left languages * Make installer include_path-independent, so it should work on hosts which disable user setting of PHP include_path setting * glob() is horribly unreliable and doesn't work on some systems, including free.fr shared hosting. No longer using it in Language::getLanguageNames() * (bug 10763) Fix multi-insert logic for PostgreSQL +* Fix invalid XHTML when viewing a deleted revision == API changes since 1.10 == diff --git a/includes/SpecialUndelete.php b/includes/SpecialUndelete.php index 4a5bb13a83..ad8890645c 100644 --- a/includes/SpecialUndelete.php +++ b/includes/SpecialUndelete.php @@ -631,7 +631,7 @@ class UndeleteForm { $wgOut->addHtml( wfElement( 'textarea', array( - 'readonly' => true, + 'readonly' => 'readonly', 'cols' => intval( $wgUser->getOption( 'cols' ) ), 'rows' => intval( $wgUser->getOption( 'rows' ) ) ), $rev->getText() . "\n" ) . -- 2.20.1