diff --git a/ChangeLog b/ChangeLog index 89363ba01..695df2531 100755 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,8 @@ $Source$ calendar. 2004-04-27 Garvin Hicking + * libraries/display_tbl.lib.php: RFE #867284 - Click on result row + to mark the checkbox. * tbl_select.php: RFE #940194 - Add REGEXP to table search options * read_dump.php: Bug #925913 - Uploading with UploadDir/open_basedir fails. diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 44cf285c6..cd7e2ad22 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1165,6 +1165,8 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) $column_style = ''; } + $column_style .= ' onmousedown="document.getElementById(\'id_rows_to_delete' . $row_no . '\').checked = (document.getElementById(\'id_rows_to_delete' . $row_no . '\').checked ? false : true);" '; + // garvin: Wrap MIME-transformations. [MIME] $default_function = 'default_function'; // default_function $transform_function = $default_function;