From: <buc...@us...> - 2009-10-26 12:00:18
|
Revision: 155 http://devmon.svn.sourceforge.net/devmon/?rev=155&view=rev Author: buchanmilne Date: 2009-10-26 11:59:58 +0000 (Mon, 26 Oct 2009) Log Message: ----------- Use table header tags instead of table data tags for column headings (Tracker ID #2592460, Richard Finegold) Modified Paths: -------------- trunk/modules/dm_tests.pm Modified: trunk/modules/dm_tests.pm =================================================================== --- trunk/modules/dm_tests.pm 2009-09-25 04:33:30 UTC (rev 154) +++ trunk/modules/dm_tests.pm 2009-10-26 11:59:58 UTC (rev 155) @@ -1792,8 +1792,8 @@ $line =~ s/\|/ /g; } else { - $line =~ s/\|/<\/td><td>/g; - $table .= "<tr><td>$line</td></tr>\n"; + $line =~ s/\|/<\/th><th>/g; + $table .= "<tr><th>$line</th></tr>\n"; } next MSG_LINE; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |