summaryrefslogtreecommitdiff
path: root/includes/installer/OracleInstaller.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2011-12-03 13:29:22 +0100
committerPierre Schmitz <pierre@archlinux.de>2011-12-03 13:29:22 +0100
commitca32f08966f1b51fcb19460f0996bb0c4048e6fe (patch)
treeec04cc15b867bc21eedca904cea9af0254531a11 /includes/installer/OracleInstaller.php
parenta22fbfc60f36f5f7ee10d5ae6fe347340c2ee67c (diff)
Update to MediaWiki 1.18.0
* also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing
Diffstat (limited to 'includes/installer/OracleInstaller.php')
-rw-r--r--includes/installer/OracleInstaller.php6
1 files changed, 3 insertions, 3 deletions
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() ) {