From: Derk-Jan Hartman Date: Sat, 19 Feb 2011 20:35:51 +0000 (+0000) Subject: All functions of the importer have $title, origTitle, but processTitle() returned... X-Git-Tag: 1.31.0-rc.0~31880 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=70e98b5a79aa329ab646f95fc0d9c8779064d438;p=lhc%2Fweb%2Fwiklou.git 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 --- 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 ); } }