mirror of
https://github.com/vrana/adminer.git
synced 2025-09-01 18:32:39 +02:00
Fix using undefined Min_DB::info property
This commit is contained in:
@@ -183,7 +183,8 @@ if (!$error && $_POST) {
|
|||||||
stop_session();
|
stop_session();
|
||||||
}
|
}
|
||||||
if (!$_POST["only_errors"]) {
|
if (!$_POST["only_errors"]) {
|
||||||
echo "<p class='message' title='" . h($connection->info) . "'>" . lang('Query executed OK, %d row(s) affected.', $affected) . "$time\n";
|
$title = isset($connection->info) ? "title='" . h($connection->info) . "'" : "";
|
||||||
|
echo "<p class='message' $title>" . lang('Query executed OK, %d row(s) affected.', $affected) . "$time\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo ($warnings ? "<div id='$warnings_id' class='hidden'>\n$warnings</div>\n" : "");
|
echo ($warnings ? "<div id='$warnings_id' class='hidden'>\n$warnings</div>\n" : "");
|
||||||
|
Reference in New Issue
Block a user