From: Domas Mituzas Date: Mon, 22 Jan 2007 11:19:03 +0000 (+0000) Subject: Allow sending per-user contribution requests to "contributions" query group X-Git-Tag: 1.31.0-rc.0~54231 X-Git-Url: http://git.cyclocoop.org/data/%24oldEdit?a=commitdiff_plain;h=21a15c1d0a656b81b551454230f42d6cbdb42cb8;p=lhc%2Fweb%2Fwiklou.git Allow sending per-user contribution requests to "contributions" query group --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 115d198534..55d3d1db25 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -139,6 +139,7 @@ lighter making things easier to read. * (bug 4133) Allow page protections to be made with an expiry date, in the same format as block expiry dates. Existing protections are assumed to be infinite, as are protections made with the new field left blank. +* Allow sending per-user contribution requests to "contributions" query group == Languages updated == diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index 863a81fd4c..70ff0c7cfd 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -14,7 +14,7 @@ class ContribsFinder { function ContribsFinder( $username ) { $this->username = $username; $this->namespace = false; - $this->dbr =& wfGetDB( DB_SLAVE ); + $this->dbr =& wfGetDB( DB_SLAVE, 'contributions' ); } function setNamespace( $ns ) {