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,9 +211,9 @@ 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];
}
}
if ($name != "") {
return $return[$name];
}
}
return $return;