From: Sam Reed Date: Mon, 23 Nov 2009 18:38:57 +0000 (+0000) Subject: bug 21604 Spellcheck attribute for editsummary X-Git-Tag: 1.31.0-rc.0~38727 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=bea33dfc162dbc1055fa7e216ae50e6e71349ac4;p=lhc%2Fweb%2Fwiklou.git bug 21604 Spellcheck attribute for editsummary --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 8103ee1914..b9bf0c68c0 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -284,6 +284,7 @@ Hopefully we will remove this configuration var soon) * Added maintenance script syntaxChecker.php that checks for PHP syntax errors and common coding mistakes * Updated Unicode normalization tables +* (bug 21604) Spellcheck attribute for editsummary === Bug fixes in 1.16 === diff --git a/includes/EditPage.php b/includes/EditPage.php index 3139ecc4c6..745a7cc9b8 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1425,7 +1425,8 @@ class EditPage { array( 'id' => 'wpSummary', 'maxlength' => '200', - 'tabindex' => '1' + 'tabindex' => '1', + 'spellcheck' => 'yes' ) ); } else { $summaryhiddens .= Xml::hidden( 'wpIgnoreBlankSummary', true ); # bug 18699 @@ -1452,7 +1453,8 @@ class EditPage { array( 'id' => 'wpSummary', 'maxlength' => '200', - 'tabindex' => '1' + 'tabindex' => '1', + 'spellcheck' => 'yes' ) ); // No idea where this is closed.