From ec2d9ba982429053ff7884f676c1661e62fa23cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Kr=C3=B6g?= Date: Mon, 1 Apr 2024 03:23:21 +0200 Subject: [PATCH] Add missing $$ delimiter to exported triggers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maximilian Krög --- libraries/classes/Plugins/Export/ExportSql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/classes/Plugins/Export/ExportSql.php b/libraries/classes/Plugins/Export/ExportSql.php index cc38feb0c73c..e387d60c0973 100644 --- a/libraries/classes/Plugins/Export/ExportSql.php +++ b/libraries/classes/Plugins/Export/ExportSql.php @@ -2127,7 +2127,7 @@ public function exportStructure( $usedAlias = true; } - $triggerQuery .= 'DELIMITER ;' . $crlf; + $triggerQuery .= $delimiter . $crlf . 'DELIMITER ;' . $crlf; } // One warning per table.