From: Daniel Friesen Date: Thu, 3 Dec 2009 08:22:56 +0000 (+0000) Subject: Missing $wgRequest in showSummaryInput X-Git-Tag: 1.31.0-rc.0~38644 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=09867504e2ee8f25e548317c49bc0fd2e2f3da67;p=lhc%2Fweb%2Fwiklou.git Missing $wgRequest in showSummaryInput --- diff --git a/includes/EditPage.php b/includes/EditPage.php index 1bb8f4599d..b4515dd3c6 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1566,7 +1566,7 @@ END * @return string */ protected function showSummaryInput( $isSubjectPreview, $summary = "" ) { - global $wgOut, $wgContLang; + global $wgOut, $wgContLang, $wgRequest; # Add a class if 'missingsummary' is triggered to allow styling of the summary line $summaryClass = $this->missingSummary ? 'mw-summarymissed' : 'mw-summary'; if ( $isSubjectPreview ) {