Skip to content

Commit

Permalink
Add missing $$ delimiter to exported triggers
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Krög <maxi_kroeg@web.de>
  • Loading branch information
MoonE committed Apr 1, 2024
1 parent cc2ab4b commit ec2d9ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/classes/Plugins/Export/ExportSql.php
Expand Up @@ -2127,7 +2127,7 @@ public function exportStructure(
$usedAlias = true;
}

$triggerQuery .= 'DELIMITER ;' . $crlf;
$triggerQuery .= $delimiter . $crlf . 'DELIMITER ;' . $crlf;
}

// One warning per table.
Expand Down

0 comments on commit ec2d9ba

Please sign in to comment.