Removed the test code I'd forgot and left in the table element

git-svn-id: file:///svn-source/pmgr/branches/initial_20090526@59 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-06-01 07:23:42 +00:00
parent 0c43a0f884
commit 4aa59a40a2

View File

@@ -58,7 +58,6 @@ if (isset($rows) && is_array($rows) && count($rows)) {
$row[$c] = array($col, array('class' => $cell_class)); $row[$c] = array($col, array('class' => $cell_class));
} }
} }
echo('<DIV CLASS="tdiv"' . "\n");
// OK, output the table HTML // OK, output the table HTML
echo('<TABLE' . (isset($class) ? ' CLASS="'.$class.'"' : '') . '>' . "\n"); echo('<TABLE' . (isset($class) ? ' CLASS="'.$class.'"' : '') . '>' . "\n");
if (isset($caption)) if (isset($caption))
@@ -73,5 +72,4 @@ if (isset($rows) && is_array($rows) && count($rows)) {
false, false) . "\n"; false, false) . "\n";
echo('</TABLE>' . "\n"); echo('</TABLE>' . "\n");
echo('</DIV' . "\n");
} }