From: Aaron Schulz Date: Tue, 6 Sep 2016 20:36:16 +0000 (-0700) Subject: Turn off "reportDupes" in CachedBagOStuff X-Git-Tag: 1.31.0-rc.0~5744^2 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=58038b262164647d7aa007c2a2c250cf2e7acc1d;p=lhc%2Fweb%2Fwiklou.git Turn off "reportDupes" in CachedBagOStuff Change-Id: I79148be842a940c92e555e10b24c32cdf7609539 --- diff --git a/includes/libs/objectcache/CachedBagOStuff.php b/includes/libs/objectcache/CachedBagOStuff.php index e70a51f93d..74bf4b515f 100644 --- a/includes/libs/objectcache/CachedBagOStuff.php +++ b/includes/libs/objectcache/CachedBagOStuff.php @@ -42,6 +42,8 @@ class CachedBagOStuff extends HashBagOStuff { * @param array $params Parameters for HashBagOStuff */ function __construct( BagOStuff $backend, $params = [] ) { + unset( $params['reportDupes'] ); // useless here + parent::__construct( $params ); $this->backend = $backend;