Skip to content

Commit

Permalink
Fix #16789 Missing ; from Create PHP code
Browse files Browse the repository at this point in the history
Signed-off-by: Saksham Gupta <shucon01@gmail.com>
  • Loading branch information
shucon authored and williamdes committed Apr 12, 2021
1 parent fab3191 commit 9862b93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/classes/Import.php
Expand Up @@ -337,8 +337,8 @@ public function runQueryPost(
): ?array {
if (! empty($sql) || ! empty($full)) {
return [
'sql' => $sql,
'full' => $full,
'sql' => $sql . ';',
'full' => $full . ';',
];
}

Expand Down

0 comments on commit 9862b93

Please sign in to comment.