From 09867504e2ee8f25e548317c49bc0fd2e2f3da67 Mon Sep 17 00:00:00 2001 From: Daniel Friesen Date: Thu, 3 Dec 2009 08:22:56 +0000 Subject: [PATCH] Missing $wgRequest in showSummaryInput --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) { -- 2.20.1