Bug #949087 - js error
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2004-05-06 Garvin Hicking <pma@supergarv.de>
|
||||||
|
* libraries/display_tbl.lib.php: Bug #949087 - Fixed JS error for
|
||||||
|
mousepointer hovering on rows w/o checkboxes.
|
||||||
|
|
||||||
2004-05-05 Marc Delisle <lem9@users.sourceforge.net>
|
2004-05-05 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_select.php: patch #939197, new choice of operator LIKE %...%
|
* tbl_select.php: patch #939197, new choice of operator LIKE %...%
|
||||||
because this syntax is so often used, thanks to Ruben Barkow (rubo77)
|
because this syntax is so often used, thanks to Ruben Barkow (rubo77)
|
||||||
|
@@ -1180,7 +1180,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql)
|
|||||||
$column_style = '';
|
$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);" ';
|
$column_style .= ' onmousedown="if (document.getElementById(\'id_rows_to_delete' . $row_no . '\')) { 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]
|
// garvin: Wrap MIME-transformations. [MIME]
|
||||||
$default_function = 'default_function'; // default_function
|
$default_function = 'default_function'; // default_function
|
||||||
|
Reference in New Issue
Block a user