r15518 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r15517‎ | r15518 | r15519 >
Date:04:02, 11 July 2006
Author:brion
Status:old
Tags:
Comment:
* (bug 6627) Fix regression in Special:Ipblocklist with table prefix
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/SpecialIpblocklist.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/SpecialIpblocklist.php
@@ -336,7 +336,7 @@
337337 $conds[] = 'ipb_by=user_id';
338338 return array(
339339 'tables' => array( 'ipblocks', 'user' ),
340 - 'fields' => 'ipblocks.*,user_name',
 340+ 'fields' => $this->mDb->tableName( 'ipblocks' ) . '.*,user_name',
341341 'conds' => $conds,
342342 );
343343 }
Index: trunk/phase3/RELEASE-NOTES
@@ -48,6 +48,7 @@
4949 * (bug 6299) Maintain parser's revision ID across recursive calls to fix
5050 {{REVISIONID}} when Cite extension is used
5151 * (bug 6622) Removed deprecated function image::newFromTitle
 52+* (bug 6627) Fix regression in Special:Ipblocklist with table prefix
5253
5354
5455 == Languages updated ==