From cdf475e5ad30701946e048659781a121c1849374 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sun, 2 Aug 2009 13:37:41 +0000 Subject: [PATCH] * (bug 18699) Using the nosummary URL option no longer triggers the "You have not provided a summary" warning for those who activated it in their preferences --- includes/EditPage.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/EditPage.php b/includes/EditPage.php index d3b7a82c15..4aa603bf1e 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1409,6 +1409,8 @@ class EditPage { 'maxlength' => '200', 'tabindex' => '1' ) ); + } else { + $summaryhiddens .= Xml::hidden( 'wpIgnoreBlankSummary', true ); # bug 18699 } $editsummary = "
\n"; global $wgParser; -- 2.20.1