From: Brion Vibber Date: Tue, 11 Jul 2006 04:02:56 +0000 (+0000) Subject: * (bug 6627) Fix regression in Special:Ipblocklist with table prefix X-Git-Tag: 1.31.0-rc.0~56316 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=1d5102e610cfbe15493bd51f25621e44dbdf81ab;p=lhc%2Fweb%2Fwiklou.git * (bug 6627) Fix regression in Special:Ipblocklist with table prefix --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index f67cbfb25f..58f1621270 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -48,6 +48,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 6299) Maintain parser's revision ID across recursive calls to fix {{REVISIONID}} when Cite extension is used * (bug 6622) Removed deprecated function image::newFromTitle +* (bug 6627) Fix regression in Special:Ipblocklist with table prefix == Languages updated == diff --git a/includes/SpecialIpblocklist.php b/includes/SpecialIpblocklist.php index 024385b76a..b1cf1f4ea0 100644 --- a/includes/SpecialIpblocklist.php +++ b/includes/SpecialIpblocklist.php @@ -336,7 +336,7 @@ class IPBlocklistPager extends ReverseChronologicalPager { $conds[] = 'ipb_by=user_id'; return array( 'tables' => array( 'ipblocks', 'user' ), - 'fields' => 'ipblocks.*,user_name', + 'fields' => $this->mDb->tableName( 'ipblocks' ) . '.*,user_name', 'conds' => $conds, ); }