mirror of
https://github.com/vrana/adminer.git
synced 2025-08-12 01:24:17 +02:00
Don't display warnings for failed queries
This commit is contained in:
@@ -32,7 +32,7 @@ if (!$error && $_POST) {
|
||||
$query = (isset($_GET["callf"]) ? "SELECT" : "CALL") . " " . table($PROCEDURE) . "(" . implode(", ", $call) . ")";
|
||||
$start = microtime(true);
|
||||
$result = $connection->multi_query($query);
|
||||
echo $adminer->selectQuery($query, $start);
|
||||
echo $adminer->selectQuery($query, $start, !$result);
|
||||
|
||||
if (!$result) {
|
||||
echo "<p class='error'>" . error() . "\n";
|
||||
|
Reference in New Issue
Block a user