Remove deprecated HTML table parameters

This commit is contained in:
Peter Knut
2024-10-15 22:47:48 +02:00
parent 91d44f4a9f
commit dd9a4a2b65
9 changed files with 15 additions and 15 deletions

View File

@@ -13,7 +13,7 @@ class AdminerTableIndexesStructure {
* @return bool
*/
function tableIndexesPrint($indexes) {
echo "<table cellspacing='0'>\n";
echo "<table>\n";
echo "<thead><tr><th>" . lang('Name') . "<th>" . lang('Type') . "<th>" . lang('Columns') . "</thead>\n";
foreach ($indexes as $name => $index) {
echo "<tr><th>" . h($name) . "<td>" . $index['type'];