diff --git a/ChangeLog b/ChangeLog index 39f54837c..a5f2154b4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,8 @@ $HeadURL$ 2007-01-02 Michal Čihař * libraries/common.lib.php: Add
to allow selecting whole SQL by tripple click (patch #1611591). + * libraries/export/sql.php: DELIMITER should not be commented out (bug + #1612870). 2006-12-31 Marc Delisle * Documentation.html: RFE #1602243, another cause for Missing parameter, diff --git a/libraries/export/sql.php b/libraries/export/sql.php index c1676df29..b75fa6bb4 100644 --- a/libraries/export/sql.php +++ b/libraries/export/sql.php @@ -321,7 +321,7 @@ function PMA_exportDBFooter($db) . $comment_marker . $crlf . $comment_marker . $GLOBALS['strProcedures'] . $crlf . $comment_marker . $crlf - . $comment_marker . 'DELIMITER ' . $delimiter . $crlf + . 'DELIMITER ' . $delimiter . $crlf . $comment_marker . $crlf; foreach($procedure_names as $procedure_name) { @@ -329,7 +329,7 @@ function PMA_exportDBFooter($db) } $procs_funcs .= $comment_marker . $crlf - . $comment_marker . 'DELIMITER ;' . $crlf + . 'DELIMITER ;' . $crlf . $comment_marker . $crlf; }