[collectd] collection3 problem with rowspan in firefox
Peter Holik
peter at holik.at
Mon Oct 27 12:04:55 CET 2008
Hi!
It seams that firefox 3 ignores sometimes td rowspan.
My fix is:
--- index.cgi_orig 2008-10-27 12:00:01.000000000 +0100
+++ index.cgi 2008-10-27 12:00:20.000000000 +0100
@@ -331,8 +331,9 @@
my $id = sprintf ("graph%04i", $id_counter++);
print " <tr>\n";
- print " <tr>\n";
- print " <td rowspan=\"$graphs_num\">$type</td>\n" if ($i == 0);
+ print " <td>";
+ print "$type" if ($i == 0);
+ print "</td>\n";
print <<EOF;
<td>
<div class="graph_canvas">
cu Peter
More information about the collectd
mailing list