]> mj.ucw.cz Git - pciids.git/commitdiff
Remove </tr> and </td>
authorMichal Vaner <vorner@ucw.cz>
Tue, 26 Aug 2008 19:56:11 +0000 (21:56 +0200)
committerMichal Vaner <vorner@ucw.cz>
Tue, 26 Aug 2008 19:56:11 +0000 (21:56 +0200)
They are optional and the page size is smaller this way (less traffic,
less work for renderer)

PciIds/Html/Format.pm

index 1544d20dd15d778a0ed16c37ade237eb001653af..b9b3c4a887a2a7702ade6aa77b12c72ad0bd35ce 100644 (file)
@@ -27,9 +27,9 @@ sub htmlFormatTable( $$$$$$ ) {
                        }
                        my $data = &{$func}( $line->[ $i ] );
                        $data = "" unless( defined( $data ) );
-                       print $header.$data.'</td>';
+                       print $header.$data;
                }
-               print "</tr>\n";
+               print "\n";
        }
 }