1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 23:57:29 +02:00

Document changes

This commit is contained in:
Jakub Vrana
2014-01-09 22:28:42 -08:00
parent a8b7951a11
commit 1d52a4c1d5
2 changed files with 5 additions and 4 deletions

View File

@@ -303,11 +303,11 @@ if (isset($_GET["elastic"])) {
*/
function drop_tables($tables) {
global $connection;
$result = true;
foreach ($tables as $table) { // convert to bulk api
$result = $result && $connection->query(urlencode($table), array(), 'DELETE');
$return = true;
foreach ($tables as $table) { //! convert to bulk api
$return = $return && $connection->query(urlencode($table), array(), 'DELETE');
}
return $result;
return $return;
}
$jush = "elastic";