]> git.joonet.de Git - adminer.git/commitdiff
Rename variable
authorJakub Vrana <jakub@vrana.cz>
Fri, 29 Jul 2011 14:42:44 +0000 (16:42 +0200)
committerJakub Vrana <jakub@vrana.cz>
Fri, 29 Jul 2011 14:42:44 +0000 (16:42 +0200)
adminer/script.inc.php

index 848cb7d76c19bb353f95b909d45612883004f4e9..24747ea7d7c0d05d41ddd6c52a27a446754dcff9 100644 (file)
@@ -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");
                                }
                        }