From 2413e64a7cefa690378d8ad80364e8ff89a8a192 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 12 Dec 2009 18:04:13 +0000 Subject: [PATCH] Missing global; was throwing Fatal error: Call to a member function getSkinFromCssJsSubpage() on a non-object in includes/EditPage.php on line 1467 --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index a46eb9fb09..3a6686930f 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1394,7 +1394,7 @@ HTML } protected function showHeader() { - global $wgOut, $wgParser, $wgUser, $wgMaxArticleSize, $wgLang; + global $wgOut, $wgParser, $wgUser, $wgTitle, $wgMaxArticleSize, $wgLang; if ( $this->isConflict ) { $wgOut->wrapWikiMsg( "
\n$1
", 'explainconflict' ); $this->edittime = $this->mArticle->getTimestamp(); -- 2.20.1