
catrope at svn
Aug 27, 2008, 1:28 PM
Post #1 of 1
(18 views)
Permalink
|
|
SVN: [40102] trunk/phase3
|
|
Revision: 40102 Author: catrope Date: 2008-08-27 20:28:12 +0000 (Wed, 27 Aug 2008) Log Message: ----------- Make Special:Allpages/User:Foo actually work. Patch by Mormegil Modified Paths: -------------- trunk/phase3/CREDITS trunk/phase3/includes/specials/SpecialAllpages.php Modified: trunk/phase3/CREDITS =================================================================== --- trunk/phase3/CREDITS 2008-08-27 20:25:19 UTC (rev 40101) +++ trunk/phase3/CREDITS 2008-08-27 20:28:12 UTC (rev 40102) @@ -40,6 +40,7 @@ * Danny B. * Louperivois * Max Semenik +* Mormegil * RememberTheDot == Translators == Modified: trunk/phase3/includes/specials/SpecialAllpages.php =================================================================== --- trunk/phase3/includes/specials/SpecialAllpages.php 2008-08-27 20:25:19 UTC (rev 40101) +++ trunk/phase3/includes/specials/SpecialAllpages.php 2008-08-27 20:28:12 UTC (rev 40102) @@ -276,7 +276,7 @@ $namespace = NS_MAIN; } else { list( $namespace, $fromKey, $from ) = $fromList; - list( $namespace, $toKey, $to ) = $toList; + list( $namespace2, $toKey, $to ) = $toList; $dbr = wfGetDB( DB_SLAVE ); $conds = array( _______________________________________________ MediaWiki-CVS mailing list MediaWiki-CVS[at]lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs
|