From 1bc2eb8a8188a893a837235b0ec277136cd756cc Mon Sep 17 00:00:00 2001 From: Robin Pepermans Date: Sun, 3 Jul 2011 17:56:59 +0000 Subject: [PATCH] Changing back to $wgUser in SpecialImport.php. Importing pages returned "call to undefined method ImportReporter::getSkin()" due to r91246. --- includes/specials/SpecialImport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialImport.php b/includes/specials/SpecialImport.php index e41685db45..3e6e344cc0 100644 --- a/includes/specials/SpecialImport.php +++ b/includes/specials/SpecialImport.php @@ -350,7 +350,7 @@ class ImportReporter { $args = func_get_args(); call_user_func_array( $this->mOriginalPageOutCallback, $args ); - $skin = $this->getSkin(); + $skin = $wgUser->getSkin(); $this->mPageCount++; -- 2.20.1