Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -1425,7 +1425,8 @@ |
1426 | 1426 | array( |
1427 | 1427 | 'id' => 'wpSummary', |
1428 | 1428 | 'maxlength' => '200', |
1429 | | - 'tabindex' => '1' |
| 1429 | + 'tabindex' => '1', |
| 1430 | + 'spellcheck' => 'yes' |
1430 | 1431 | ) ); |
1431 | 1432 | } else { |
1432 | 1433 | $summaryhiddens .= Xml::hidden( 'wpIgnoreBlankSummary', true ); # bug 18699 |
— | — | @@ -1452,7 +1453,8 @@ |
1453 | 1454 | array( |
1454 | 1455 | 'id' => 'wpSummary', |
1455 | 1456 | 'maxlength' => '200', |
1456 | | - 'tabindex' => '1' |
| 1457 | + 'tabindex' => '1', |
| 1458 | + 'spellcheck' => 'yes' |
1457 | 1459 | ) ); |
1458 | 1460 | |
1459 | 1461 | // No idea where this is closed. |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -284,6 +284,7 @@ |
285 | 285 | * Added maintenance script syntaxChecker.php that checks for PHP syntax errors |
286 | 286 | and common coding mistakes |
287 | 287 | * Updated Unicode normalization tables |
| 288 | +* (bug 21604) Spellcheck attribute for editsummary |
288 | 289 | |
289 | 290 | === Bug fixes in 1.16 === |
290 | 291 | |