mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/10296] Fix CROSS JOIN with INNER JOIN on MSSQL, Postgres and Oracle
PHPBB3-10296
This commit is contained in:
parent
e8686d9dad
commit
3d893c8222
1 changed files with 1 additions and 1 deletions
|
@ -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']))
|
if (!empty($array['LEFT_JOIN']))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue