Fix XHTML
authorRob Church <robchurch@users.mediawiki.org>
Thu, 9 Aug 2007 20:02:04 +0000 (20:02 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Thu, 9 Aug 2007 20:02:04 +0000 (20:02 +0000)
RELEASE-NOTES
includes/SpecialUndelete.php

index 53011cc..f2cad96 100644 (file)
@@ -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 ==
 
index 4a5bb13..ad88906 100644 (file)
@@ -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" ) .