1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/15339] Fix tests

PHPBB3-15339
This commit is contained in:
Oliver Schramm
2017-12-24 19:55:03 +01:00
parent 719a49d387
commit 2b16b7cada
2 changed files with 1 additions and 20 deletions

View File

@@ -391,7 +391,7 @@ class module implements \phpbb\db\migration\tool\tool_interface
$parent_sql = '';
if ($parent !== false)
{
$parents = (array)$this->get_parent_module_id($parent, $module);
$parents = (array) $this->get_parent_module_id($parent, $module);
$parent_sql = 'AND ' . $this->db->sql_in_set('parent_id', $parents);
}