Created
May 21, 2017 10:18
-
-
Save sergey-dryabzhinsky/ea6f4effb1fbe5f0ebc061e7029ec175 to your computer and use it in GitHub Desktop.
Fix php fatal error then export SQL into file via phpMyAdmin 4.0.10.20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: php-mysql-admin-4.0-4.0.10.20/src/export.php | |
=================================================================== | |
--- php-mysql-admin-4.0-4.0.10.20.orig/src/export.php 2017-05-19 14:09:51.805261707 +0300 | |
+++ php-mysql-admin-4.0-4.0.10.20/src/export.php 2017-05-19 14:10:42.437676490 +0300 | |
@@ -861,7 +861,7 @@ | |
'triggers', $export_type, | |
$do_relation, $do_comments, $do_mime, $do_dates | |
)) { | |
- break 2; | |
+ break; | |
} | |
} | |
if (! $export_plugin->exportDBFooter($db)) { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment