1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-21 00:02:18 +02:00

[ticket/10296] Fix CROSS JOIN with INNER JOIN on MSSQL, Postgres and Oracle

PHPBB3-10296
This commit is contained in:
dmauri 2011-11-15 22:19:45 +01:00 committed by Joas Schilling
parent e8686d9dad
commit 3d893c8222

View File

@ -609,7 +609,7 @@ class dbal
}
}
$sql .= $this->_sql_custom_build('FROM', implode(', ', $table_array));
$sql .= $this->_sql_custom_build('FROM', implode(' CROSS JOIN ', $table_array));
if (!empty($array['LEFT_JOIN']))
{