From: Kevin Israel Date: Sun, 25 Oct 2015 23:02:15 +0000 (-0400) Subject: Database::__construct(): Don't set $mTrxAtomicLevels to an SplStack X-Git-Tag: 1.31.0-rc.0~9250^2 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dcompta/operations/supprimer.php?a=commitdiff_plain;h=75168d6ae6207a26e5c2f17e1a70398452715e11;p=lhc%2Fweb%2Fwiklou.git Database::__construct(): Don't set $mTrxAtomicLevels to an SplStack Follows-up db0b9ef2649c and 01ef30fcc495. Change-Id: I06188c746fb885819aa93e0e3caf3dc2bac7ae72 --- diff --git a/includes/db/Database.php b/includes/db/Database.php index 2f135a4c5c..57c28bbef0 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -607,7 +607,6 @@ abstract class DatabaseBase implements IDatabase { function __construct( array $params ) { global $wgDBprefix, $wgDBmwschema, $wgCommandLineMode; - $this->mTrxAtomicLevels = new SplStack; $this->srvCache = ObjectCache::newAccelerator( 'hash' ); $server = $params['host'];