From 70e98b5a79aa329ab646f95fc0d9c8779064d438 Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Sat, 19 Feb 2011 20:35:51 +0000 Subject: [PATCH] All functions of the importer have $title, origTitle, but processTitle() returned $title, origTitle. This caused confusion and a misusage of the processTitle() result. Follow up to r66267. Fixes bug 27486 --- includes/Import.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Import.php b/includes/Import.php index a593702cb1..c76a683445 100644 --- a/includes/Import.php +++ b/includes/Import.php @@ -662,7 +662,7 @@ class WikiImporter { return false; } - return array( $origTitle, $title ); + return array( $title, $origTitle ); } } -- 2.20.1