From 794ba74be4ad55f8917e4823f3adc9821e095033 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 25 Mar 2014 09:38:40 -0700 Subject: [PATCH] Elasticsearch: Fix table_status() --- adminer/drivers/elastic.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/adminer/drivers/elastic.inc.php b/adminer/drivers/elastic.inc.php index f5d749e8..6a143726 100644 --- a/adminer/drivers/elastic.inc.php +++ b/adminer/drivers/elastic.inc.php @@ -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]; } }