From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- includes/installer/OracleInstaller.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'includes/installer/OracleInstaller.php') diff --git a/includes/installer/OracleInstaller.php b/includes/installer/OracleInstaller.php index 8c3e40e1..175baf0b 100644 --- a/includes/installer/OracleInstaller.php +++ b/includes/installer/OracleInstaller.php @@ -27,7 +27,7 @@ class OracleInstaller extends DatabaseInstaller { '_OracleTempTS' => 'TEMP', '_InstallUser' => 'SYSDBA', ); - + public $minimumVersion = '9.0.1'; // 9iR1 protected $connError = null; @@ -92,7 +92,7 @@ class OracleInstaller extends DatabaseInstaller { // Scenario 1: Install with a manually created account $status = $this->getConnection(); if ( !$status->isOK() ) { - if ( $this->connError == 28009 ) { + if ( $this->connError == 28009 ) { // _InstallUser seems to be a SYSDBA // Scenario 2: Create user with SYSDBA and install with new user $status = $this->submitWebUserBox(); @@ -199,7 +199,7 @@ class OracleInstaller extends DatabaseInstaller { // normaly only SYSDBA users can create accounts $status = $this->openSYSDBAConnection(); if ( !$status->isOK() ) { - if ( $this->connError == 1031 ) { + if ( $this->connError == 1031 ) { // insufficient privileges (looks like a normal user) $status = $this->openConnection(); if ( !$status->isOK() ) { -- cgit v1.2.3-54-g00ecf