mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 03:54:10 +01:00
[ticket/12436] Data passed to sql_multi_insert is expected to be multi-dim.
PHPBB3-12436
This commit is contained in:
parent
6e85b2acc7
commit
69865852a0
@ -422,7 +422,7 @@ class phpbb_functional_test_case extends phpbb_test_case
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$db->sql_multi_insert(STYLES_TABLE, array(
|
$db->sql_multi_insert(STYLES_TABLE, array(array(
|
||||||
'style_id' => $style_id,
|
'style_id' => $style_id,
|
||||||
'style_name' => $style_path,
|
'style_name' => $style_path,
|
||||||
'style_copyright' => '',
|
'style_copyright' => '',
|
||||||
@ -431,7 +431,7 @@ class phpbb_functional_test_case extends phpbb_test_case
|
|||||||
'bbcode_bitfield' => 'kNg=',
|
'bbcode_bitfield' => 'kNg=',
|
||||||
'style_parent_id' => $parent_style_id,
|
'style_parent_id' => $parent_style_id,
|
||||||
'style_parent_tree' => $parent_style_path,
|
'style_parent_tree' => $parent_style_path,
|
||||||
));
|
)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user