aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-07-28 02:56:02 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-07-28 02:56:02 +0000
commit22d778fcfffe08317e951d24bbaad94441ed4ab0 (patch)
tree12cd01411a215c0414f5b0cd2343f43d27940fd9 /phpBB/includes/db
parent007f4f69872f0e8f9d848229078e488f620eaca1 (diff)
downloadforums-22d778fcfffe08317e951d24bbaad94441ed4ab0.tar
forums-22d778fcfffe08317e951d24bbaad94441ed4ab0.tar.gz
forums-22d778fcfffe08317e951d24bbaad94441ed4ab0.tar.bz2
forums-22d778fcfffe08317e951d24bbaad94441ed4ab0.tar.xz
forums-22d778fcfffe08317e951d24bbaad94441ed4ab0.zip
- Fix Oracle
- Make MySQL schema a little different than the others... - Fix MCP_TOPIC git-svn-id: file:///svn/phpbb/trunk@6212 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db')
-rw-r--r--phpBB/includes/db/oracle.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/oracle.php b/phpBB/includes/db/oracle.php
index bc7bf5ec16..699005fd99 100644
--- a/phpBB/includes/db/oracle.php
+++ b/phpBB/includes/db/oracle.php
@@ -278,7 +278,7 @@ class dbal_oracle extends dbal
// OCI->CLOB?
if (is_object($value))
{
- $value = ociloadlob($value);
+ $value = $value->load();
}
$result_row[strtolower($key)] = $value;