From bea33dfc162dbc1055fa7e216ae50e6e71349ac4 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Mon, 23 Nov 2009 18:38:57 +0000 Subject: [PATCH] bug 21604 Spellcheck attribute for editsummary --- RELEASE-NOTES | 1 + includes/EditPage.php | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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. -- 2.20.1