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

@@ -62,7 +62,7 @@ if (!extension_loaded("xdebug")) {
if (file_exists($coverage_filename)) {
// display list of files
$coverage = unserialize(file_get_contents($coverage_filename));
echo "<table border='1' cellspacing='0'>\n";
echo "<table>\n";
foreach (array_merge(glob("adminer/*.php"), glob("adminer/include/*.php"), glob("editor/*.php"), glob("editor/include/*.php")) as $filename) {
$cov = $coverage[realpath($filename)];
$ratio = 0;