THEAD in English

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@328 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana 2007-08-10 14:49:44 +00:00
parent 5014ab5952
commit 7b0750c1cd

View file

@ -25,7 +25,7 @@ if ($_POST) {
$result = $mysql->query("SHOW PROCESSLIST");
for ($i=0; $row = $result->fetch_assoc(); $i++) {
if (!$i) {
echo "<thead><tr><th>&nbsp;</th><th>" . implode("</th><th>", array_keys($row)) . "</th></tr></thead>\n"; //! translation
echo "<thead lang='en'><tr><th>&nbsp;</th><th>" . implode("</th><th>", array_keys($row)) . "</th></tr></thead>\n";
}
echo "<tr><td><input type='checkbox' name='kill[]' value='$row[Id]' /></td><td>" . implode("</td><td>", $row) . "</td></tr>\n";
}