Fix query splitting in some cases (reported by Marc).

This commit is contained in:
Michal Čihař
2005-11-20 23:58:29 +00:00
parent 3885bb6bd7
commit 898ee94c1a
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2005-11-21 Michal Čihař <michal@cihar.com>
* libraries/import/sql.php: Fix query splitting in some cases (reported by
Marc).
2005-11-20 Marc Delisle <lem9@users.sourceforge.net>
### 2.7.0-rc1 released
* many files: $dbh becomes $controllink for better contrast with $userlink

View File

@@ -89,7 +89,7 @@ if (isset($import_list)) {
if (!$endq) break;
$i++;
// Aren't we at the end?
if ($i == $len) {
if ($finished && $i == $len) {
$i--;
} else {
continue;