diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-04 16:07:02 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-04 16:07:02 -0500 |
commit | 40db60e45f3d7af01a96f9da6b36db2606b3d147 (patch) | |
tree | bd8bf683ba040eb5c213294fde785e349d501721 | |
parent | 9f549e8249acbd82b68e961a6e0a31de47d9ca32 (diff) | |
download | forums-40db60e45f3d7af01a96f9da6b36db2606b3d147.tar forums-40db60e45f3d7af01a96f9da6b36db2606b3d147.tar.gz forums-40db60e45f3d7af01a96f9da6b36db2606b3d147.tar.bz2 forums-40db60e45f3d7af01a96f9da6b36db2606b3d147.tar.xz forums-40db60e45f3d7af01a96f9da6b36db2606b3d147.zip |
[ticket/10205] Fix a parse error in oracle driver.
PHPBB3-10205
-rw-r--r-- | phpBB/includes/db/oracle.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/oracle.php b/phpBB/includes/db/oracle.php index b234d8b45e..4a7a4ecc8c 100644 --- a/phpBB/includes/db/oracle.php +++ b/phpBB/includes/db/oracle.php @@ -74,7 +74,7 @@ class dbal_oracle extends dbal $this->connect_error = 'ocilogon function does not exist, is oci extension installed?'; 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(''); |