Rm unused assignment of $wgOut. $wgOut needs to be gone from Database code.
authorChad Horohoe <demon@users.mediawiki.org>
Thu, 20 Jan 2011 01:20:27 +0000 (01:20 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Thu, 20 Jan 2011 01:20:27 +0000 (01:20 +0000)
includes/db/DatabaseIbm_db2.php

index 3c9ab4d..ad2862e 100644 (file)
@@ -114,7 +114,7 @@ class DatabaseIbm_db2 extends DatabaseBase {
        protected $mPHPError = false;
 
        protected $mServer, $mUser, $mPassword, $mConn = null, $mDBname;
-       protected $mOut, $mOpened = false;
+       protected $mOpened = false;
 
        protected $mTablePrefix;
        protected $mFlags;
@@ -270,7 +270,6 @@ class DatabaseIbm_db2 extends DatabaseBase {
                if ( !isset( $wgOut ) ) {
                        $wgOut = null;
                }
-               $this->mOut =& $wgOut;
                $this->mFlags = DBO_TRX | $flags;
 
                if ( $schema == self::USE_GLOBAL ) {