From 2e1d38a9202819086173fa779ca2555bbf76ab35 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Fri, 29 Jul 2011 16:42:44 +0200 Subject: [PATCH] Rename variable --- adminer/script.inc.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/adminer/script.inc.php b/adminer/script.inc.php index 848cb7d7..24747ea7 100644 --- a/adminer/script.inc.php +++ b/adminer/script.inc.php @@ -3,21 +3,21 @@ header("Content-Type: text/javascript; charset=utf-8"); if ($_GET["script"] == "db") { $sums = array("Data_length" => 0, "Index_length" => 0, "Data_free" => 0); - foreach (table_status() as $row) { - $id = js_escape($row["Name"]); - json_row("Comment-$id", nbsp($row["Comment"])); - if (!is_view($row)) { + foreach (table_status() as $table_status) { + $id = js_escape($table_status["Name"]); + json_row("Comment-$id", nbsp($table_status["Comment"])); + if (!is_view($table_status)) { foreach (array("Engine", "Collation") as $key) { - json_row("$key-$id", nbsp($row[$key])); + json_row("$key-$id", nbsp($table_status[$key])); } foreach ($sums + array("Auto_increment" => 0, "Rows" => 0) as $key => $val) { - if ($row[$key] != "") { - $val = number_format($row[$key], 0, '.', lang(',')); - json_row("$key-$id", ($key == "Rows" && $row["Engine"] == "InnoDB" && $val ? "~ $val" : $val)); + if ($table_status[$key] != "") { + $val = number_format($table_status[$key], 0, '.', lang(',')); + json_row("$key-$id", ($key == "Rows" && $table_status["Engine"] == "InnoDB" && $val ? "~ $val" : $val)); if (isset($sums[$key])) { - $sums[$key] += ($row["Engine"] != "InnoDB" || $key != "Data_free" ? $row[$key] : 0); + $sums[$key] += ($table_status["Engine"] != "InnoDB" || $key != "Data_free" ? $table_status[$key] : 0); } - } elseif (array_key_exists($key, $row)) { + } elseif (array_key_exists($key, $table_status)) { json_row("$key-$id"); } }