1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-15 19:13:59 +02:00

MySQL: Fix highlighting current table in menu on macOS

This commit is contained in:
Peter Knut
2024-10-30 22:12:50 +01:00
committed by Jakub Vrana
parent f79340a0b5
commit d065c9ba51

View File

@@ -508,6 +508,8 @@ if (!defined("DRIVER")) {
$row["Comment"] = "";
}
if ($name != "") {
// MariaDB: Table name is returned as lowercase on macOS, so we fix it here.
$row["Name"] = $name;
return $row;
}
$return[$row["Name"]] = $row;