Fix Stop on error

Broken since commit 5576d84980
This commit is contained in:
Jakub Vrana 2011-08-05 17:47:33 +02:00
parent 388c21a0f9
commit 52c15bf251
2 changed files with 2 additions and 1 deletions

View file

@ -105,7 +105,7 @@ if (!$error && $_POST) {
echo "<p class='error'>" . lang('Error in query') . ": " . error() . "\n";
$errors[] = " <a href='#sql-$commands'>$commands</a>";
if ($_POST["error_stops"]) {
break;
break 2;
}
} elseif (is_object($result)) {
select($result, $connection2);

View file

@ -2,6 +2,7 @@ Adminer 3.3.2-dev:
Display error with non-existent row in edit
Fix minor parser bug in SQL command with webserver file
Don't scroll with AJAX select order and alter move column
Fix SQL command Stop on error
Fast number of rows with big tables (PostgreSQL)
Sort databases and schemas (PostgreSQL)