1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 09:34:10 +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

@@ -315,7 +315,7 @@ if (!defined('Adminer\DRIVER')) {
$result = $this->conn->query("SHOW WARNINGS");
if ($result && $result->num_rows) {
ob_start();
select($result); // select() usually needs to print a big table progressively
print_select_result($result); // print_select_result() usually needs to print a big table progressively
return ob_get_clean();
}
}