1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 01:24:17 +02:00

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);