Index: trunk/phase3/includes/SpecialUndelete.php |
— | — | @@ -631,7 +631,7 @@ |
632 | 632 | |
633 | 633 | $wgOut->addHtml( |
634 | 634 | wfElement( 'textarea', array( |
635 | | - 'readonly' => true, |
| 635 | + 'readonly' => 'readonly', |
636 | 636 | 'cols' => intval( $wgUser->getOption( 'cols' ) ), |
637 | 637 | 'rows' => intval( $wgUser->getOption( 'rows' ) ) ), |
638 | 638 | $rev->getText() . "\n" ) . |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -368,12 +368,13 @@ |
369 | 369 | sort keys to work on Safari |
370 | 370 | * (bug 4530) Fix local name of Kurdish language |
371 | 371 | * (bug 10830) Fix local name Haitian Creole language |
372 | | -* Fix comments in contributions and log pages for RTL languages |
| 372 | +* Fix comments in contributions and log pages for right-to-left languages |
373 | 373 | * Make installer include_path-independent, so it should work on hosts which |
374 | 374 | disable user setting of PHP include_path setting |
375 | 375 | * glob() is horribly unreliable and doesn't work on some systems, including |
376 | 376 | free.fr shared hosting. No longer using it in Language::getLanguageNames() |
377 | 377 | * (bug 10763) Fix multi-insert logic for PostgreSQL |
| 378 | +* Fix invalid XHTML when viewing a deleted revision |
378 | 379 | |
379 | 380 | == API changes since 1.10 == |
380 | 381 | |