From 2abb40a7476929ea643f5affba666be66f44ef99 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Sat, 17 Sep 2011 15:50:06 +0000 Subject: [PATCH] Followup r95562: forgot to convert one case. Thanks to Nikerabbit for providing the line number --- includes/EditPage.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index d2f141ca43..300c9d1481 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1131,8 +1131,10 @@ class EditPage { { if ( md5( $this->summary ) == $this->autoSumm ) { $this->missingSummary = true; + $status->fatal( 'missingsummary' ); + $status->value = self::AS_SUMMARY_NEEDED; wfProfileOut( __METHOD__ ); - return self::AS_SUMMARY_NEEDED; + return $status; } } -- 2.20.1