summaryrefslogtreecommitdiff
path: root/includes/installer/OracleInstaller.php
diff options
context:
space:
mode:
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() ) {