diff --git a/adminer/table.inc.php b/adminer/table.inc.php index ecbf7ba3..c0d03c38 100644 --- a/adminer/table.inc.php +++ b/adminer/table.inc.php @@ -34,7 +34,7 @@ if ($result) { foreach ($index["columns"] as $key => $val) { $print[] = "" . htmlspecialchars($val) . "" . ($index["lengths"][$key] ? "(" . $index["lengths"][$key] . ")" : ""); } - echo "$index[type]" . implode(", ", $print) . "\n"; + echo "$index[type]" . implode(", ", $print) . "\n"; } echo "\n"; } @@ -48,7 +48,7 @@ if ($result) { foreach ($foreign_keys as $name => $foreign_key) { $link = (strlen($foreign_key["db"]) ? "" . htmlspecialchars($foreign_key["db"]) . "." : "") . htmlspecialchars($foreign_key["table"]); echo ""; - echo "" . implode(", ", array_map('htmlspecialchars', $foreign_key["source"])) . ""; + echo "" . implode(", ", array_map('htmlspecialchars', $foreign_key["source"])) . ""; echo '$link"; echo "(" . implode(", ", array_map('htmlspecialchars', $foreign_key["target"])) . ")"; echo "" . (!strlen($foreign_key["db"]) ? '' . lang('Alter') . '' : ' ');