https://www.mediawiki.org/wiki/Special:Code/MediaWiki/112504

Revision: 112504
Author:   freakolowsky
Date:     2012-02-27 19:03:38 +0000 (Mon, 27 Feb 2012)
Log Message:
-----------
MFT r112502

Modified Paths:
--------------
    branches/REL1_19/phase3/includes/installer/OracleInstaller.php

Modified: branches/REL1_19/phase3/includes/installer/OracleInstaller.php
===================================================================
--- branches/REL1_19/phase3/includes/installer/OracleInstaller.php      
2012-02-27 19:01:58 UTC (rev 112503)
+++ branches/REL1_19/phase3/includes/installer/OracleInstaller.php      
2012-02-27 19:03:38 UTC (rev 112504)
@@ -230,6 +230,8 @@
                        // user created or already existing, switching back to 
a normal connection
                        // as the new user has all needed privileges to setup 
the rest of the schema
                        // i will be using that user as _InstallUser from this 
point on
+                       $this->db->close();
+                       $this->db = false;
                        $this->parent->setVar( '_InstallUser', $this->getVar( 
'wgDBuser' ) );
                        $this->parent->setVar( '_InstallPassword', 
$this->getVar( 'wgDBpassword' ) );
                        $this->parent->setVar( '_InstallDBname', $this->getVar( 
'wgDBuser' ) );
@@ -244,8 +246,8 @@
         */
        public function createTables() {
                $this->setupSchemaVars();
-               $this->db->selectDB( $this->getVar( 'wgDBuser' ) );
                $this->db->setFlag( DBO_DDLMODE );
+               $this->parent->setVar( 'wgDBname', $this->getVar( 'wgDBuser' ) 
);
                $status = parent::createTables();
                $this->db->clearFlag( DBO_DDLMODE );
 


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to