diff --git a/adminer/drivers/mysql.inc.php b/adminer/drivers/mysql.inc.php index 18b8e6b7..f86ff996 100644 --- a/adminer/drivers/mysql.inc.php +++ b/adminer/drivers/mysql.inc.php @@ -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;