revert bad fix of revision 12344

This commit is contained in:
Marc Delisle
2009-04-17 16:58:53 +00:00
parent 07a12d9fba
commit 0ba3f15f3e
2 changed files with 0 additions and 6 deletions

View File

@@ -76,7 +76,6 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #2724844 Add Fields: Add index is missing quotes
thanks to Luke Armstrong
- bug #2740550 [interface] Using textarea CharEditing drops default values
- bug #2634827 [import] Using DELIMITER ends with infinite cycle
- bug #2729191 [config] CheckConfigurationPermissions = false is worthless
- bug #2687046 [export] Structure export: Null always YES
- [doc] typos, thanks to Cédric Corazza

View File

@@ -109,11 +109,6 @@ while (!($GLOBALS['finished'] && $i >= $len) && !$error && !$timeout_passed) {
// Current length of our buffer
$len = strlen($buffer);
// Avoid endless loop in case of missing last newline
if ($GLOBALS['finished'] && $buffer[$len - 1] != "\n") {
$buffer .= "\n";
}
// Grab some SQL queries out of it
while ($i < $len) {
$found_delimiter = false;