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

Rename function with the same name as Driver::select

This commit is contained in:
Jakub Vrana
2025-03-28 12:08:24 +01:00
parent e3a4a214e6
commit a691bcbf15
4 changed files with 6 additions and 6 deletions

View File

@@ -49,7 +49,7 @@ if (!$error && $_POST) {
do {
$result = $connection->store_result();
if (is_object($result)) {
select($result, $connection2);
print_select_result($result, $connection2);
} else {
echo "<p class='message'>" . lang('Routine has been called, %d row(s) affected.', $affected)
. " <span class='time'>" . @date("H:i:s") . "</span>\n" // @ - time zone may be not set
@@ -58,7 +58,7 @@ if (!$error && $_POST) {
} while ($connection->next_result());
if ($out) {
select($connection->query("SELECT " . implode(", ", $out)));
print_select_result($connection->query("SELECT " . implode(", ", $out)));
}
}
}