Merge #16800 - Fix #16789 - Missing ; from Create PHP code

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2021-04-12 18:41:37 +02:00
commit 557af4d7d0
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -337,8 +337,8 @@ class Import
): ?array {
if (! empty($sql) || ! empty($full)) {
return [
'sql' => $sql,
'full' => $full,
'sql' => $sql . ';',
'full' => $full . ';',
];
}