Elasticsearch: Fix table_status()

This commit is contained in:
Jakub Vrana 2014-03-25 09:38:40 -07:00
parent 3ac662c755
commit 794ba74be4

View file

@ -229,7 +229,7 @@ if (isset($_GET["elastic"])) {
"facets" => array(
"count_by_type" => array(
"terms" => array(
"field" => "_type"
"field" => "_type",
)
)
)
@ -240,10 +240,10 @@ if (isset($_GET["elastic"])) {
$return[$table["term"]] = array(
"Name" => $table["term"],
"Engine" => "table",
"Rows" => $table["count"]
"Rows" => $table["count"],
);
}
if ($name != "") {
if ($name != "" && $name == $table["term"]) {
return $return[$name];
}
}