aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/oracle.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-12-05 11:18:59 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-12-05 11:18:59 +0000
commit5c7dcec0738c8c99535a0789a357e4f92a8dad9f (patch)
tree32e2c47f75061e0991637327667f990cf1dc3745 /phpBB/includes/db/oracle.php
parent00d870676574b7555625f1573c73d4a22f16be38 (diff)
downloadforums-5c7dcec0738c8c99535a0789a357e4f92a8dad9f.tar
forums-5c7dcec0738c8c99535a0789a357e4f92a8dad9f.tar.gz
forums-5c7dcec0738c8c99535a0789a357e4f92a8dad9f.tar.bz2
forums-5c7dcec0738c8c99535a0789a357e4f92a8dad9f.tar.xz
forums-5c7dcec0738c8c99535a0789a357e4f92a8dad9f.zip
Enforce a requirement for some DBMS (Oracle, PostgreSQL, MSSQL) where the table order is quite important in some situations. ;) Since this does not affect the operation of the other DBMS the code is placed into dbal.php.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9175 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db/oracle.php')
-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 8fdb29ce5b..a140c4b676 100644
--- a/phpBB/includes/db/oracle.php
+++ b/phpBB/includes/db/oracle.php
@@ -189,7 +189,7 @@ class dbal_oracle extends dbal
$out .= ' ' . $val[1] . '(';
$in_array = array();
- // constuct each IN() clause
+ // constuct each IN() clause
foreach ($in_clause as $in_values)
{
$in_array[] = $val[2] . ' ' . (isset($val[6]) ? $val[6] : '') . 'IN(' . implode(', ', $in_values) . ')';