From: Roan Kattouw Date: Sat, 17 Sep 2011 15:50:06 +0000 (+0000) Subject: Followup r95562: forgot to convert one case. Thanks to Nikerabbit for providing the... X-Git-Tag: 1.31.0-rc.0~27591 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=2abb40a7476929ea643f5affba666be66f44ef99;p=lhc%2Fweb%2Fwiklou.git Followup r95562: forgot to convert one case. Thanks to Nikerabbit for providing the line number --- 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; } }