fixed Elastic table_status()

This commit is contained in:
Ion Bazan 2016-03-16 12:05:51 +01:00 committed by Jakub Vrana
parent d00927ce66
commit cf10398104

View file

@ -257,9 +257,9 @@ if (isset($_GET["elastic"])) {
"Engine" => "table", "Engine" => "table",
"Rows" => $table["count"], "Rows" => $table["count"],
); );
} if ($name != "" && $name == $table["term"]) {
if ($name != "" && $name == $table["term"]) { return $return[$name];
return $return[$name]; }
} }
} }
return $return; return $return;