mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/10205] Fix a parse error in oracle driver.
PHPBB3-10205
This commit is contained in:
parent
9f549e8249
commit
40db60e45f
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ class dbal_oracle extends dbal
|
||||||
$this->connect_error = 'ocilogon function does not exist, is oci extension installed?';
|
$this->connect_error = 'ocilogon function does not exist, is oci extension installed?';
|
||||||
return $this->sql_error('');
|
return $this->sql_error('');
|
||||||
}
|
}
|
||||||
$this->db_connect_id = @ocilogon($this->user, $sqlpassword, $connect, 'UTF8'));
|
$this->db_connect_id = @ocilogon($this->user, $sqlpassword, $connect, 'UTF8');
|
||||||
}
|
}
|
||||||
|
|
||||||
return ($this->db_connect_id) ? $this->db_connect_id : $this->sql_error('');
|
return ($this->db_connect_id) ? $this->db_connect_id : $this->sql_error('');
|
||||||
|
|
Loading…
Add table
Reference in a new issue