From 1d5102e610cfbe15493bd51f25621e44dbdf81ab Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 11 Jul 2006 04:02:56 +0000 Subject: [PATCH] * (bug 6627) Fix regression in Special:Ipblocklist with table prefix --- RELEASE-NOTES | 1 + includes/SpecialIpblocklist.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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, ); } -- 2.20.1