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

Elasticsearch: fix function table_status() for 2 or more tables

This commit is contained in:
Tomas Lang
2014-01-09 23:34:39 +01:00
committed by Jakub Vrana
parent b40bfb94f5
commit a8b7951a11

View File

@@ -211,11 +211,11 @@ if (isset($_GET["elastic"])) {
if ($return) {
foreach ($return as $key => $type) { // _stats have just info about database
$return[$key] = array("Name" => $key, "Engine" => $type);
}
if ($name != "") {
return $return[$name];
}
}
}
return $return;
}