diff options
author | David M <davidmj@users.sourceforge.net> | 2006-09-16 06:07:06 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-09-16 06:07:06 +0000 |
commit | fe1367b31e7711b52f103ade06eec538823d467c (patch) | |
tree | d452300653914573a5a7c89b7d33a800093c6937 /phpBB/includes/db/oracle.php | |
parent | 9479bc428f10e166682087e8e61c19efcbbe2751 (diff) | |
download | forums-fe1367b31e7711b52f103ade06eec538823d467c.tar forums-fe1367b31e7711b52f103ade06eec538823d467c.tar.gz forums-fe1367b31e7711b52f103ade06eec538823d467c.tar.bz2 forums-fe1367b31e7711b52f103ade06eec538823d467c.tar.xz forums-fe1367b31e7711b52f103ade06eec538823d467c.zip |
bug fixes
schema changes
i really hope nothing went wrong
git-svn-id: file:///svn/phpbb/trunk@6371 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db/oracle.php')
-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 e87b7aa1f9..b988bc6a3c 100644 --- a/phpBB/includes/db/oracle.php +++ b/phpBB/includes/db/oracle.php @@ -42,7 +42,7 @@ class dbal_oracle extends dbal $this->server = $sqlserver . (($port) ? ':' . $port : ''); $this->dbname = $database; - $this->db_connect_id = ($this->persistency) ? @ociplogon($this->user, $sqlpassword, $this->server) : @ocinlogon($this->user, $sqlpassword, $this->server); + $this->db_connect_id = ($this->persistency) ? @ociplogon($this->user, $sqlpassword, $this->server, 'UTF8') : @ocinlogon($this->user, $sqlpassword, $this->server, 'UTF8'); return ($this->db_connect_id) ? $this->db_connect_id : $this->sql_error(''); } |