Disable clicking events on table creation (bug #1358896).

This commit is contained in:
Michal Čihař
2005-11-24 10:00:46 +00:00
parent 6aeabf44d1
commit ee5bb05096
2 changed files with 2 additions and 2 deletions

View File

@@ -1218,4 +1218,4 @@ function pdfPaperSize(format, axis) {
} // end switch
return 0;
}
}

View File

@@ -558,7 +558,7 @@ if ( is_array( $content_cells ) && is_array( $header_cells ) ) {
$odd_row = true;
foreach ( $content_cells as $content_row ) {
echo '<tr class="' . ( $odd_row ? 'odd' : 'even' ) . '">';
echo '<tr class="' . ( $odd_row ? 'odd' : 'even' ) . ' noclick">';
$odd_row = ! $odd_row;
if ( is_array( $content_row ) ) {