diff --git a/ChangeLog b/ChangeLog index e604fac955..4d21618198 100644 --- a/ChangeLog +++ b/ChangeLog @@ -34,6 +34,7 @@ phpMyAdmin - ChangeLog 4.7.4 (not yet released) - issue #13415 Remove shadow from the logo - issue #13507 Fixed per server theme feature +- issue #13523 Missing newline in ALTER exports 4.7.3 (2017-07-20) - issue #13447 Large multi-line query removes Export operation and blanks query box options diff --git a/libraries/classes/Plugins/Export/ExportSql.php b/libraries/classes/Plugins/Export/ExportSql.php index 52daf04d5d..3c74d1b2fb 100644 --- a/libraries/classes/Plugins/Export/ExportSql.php +++ b/libraries/classes/Plugins/Export/ExportSql.php @@ -1772,7 +1772,7 @@ class ExportSql extends ExportPlugin $sql_auto_increments_query .= ', AUTO_INCREMENT=' . $statement->entityOptions->has('AUTO_INCREMENT'); } - $sql_auto_increments_query .= ';'; + $sql_auto_increments_query .= ';' . $crlf; $sql_auto_increments = $this->generateComment( $crlf,