Fix selecting multiple rows accidentally selects the next row too
Fix #13669 Signed-off-by: Jakub Stanecki <staneckijakub@gmail.com> Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
This commit is contained in:
parent
409918e4ae
commit
2192fadc0b
@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog
|
||||
- issue #13639 Fixed error when browsing non SELECT results
|
||||
- issue #13533 Fixed saving column to display
|
||||
- issue #13647 Fixed export of tables with VIRTUAL columns
|
||||
- issue #13669 Fixed selecting multiple rows accidentally selects the next row too
|
||||
|
||||
4.7.4 (2017-08-23)
|
||||
- issue #13415 Remove shadow from the logo
|
||||
|
||||
@ -1069,7 +1069,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
end = last_clicked_row;
|
||||
}
|
||||
$tr.parent().find('tr:not(.noclick)')
|
||||
.slice(start, end + 1)
|
||||
.slice(start, end)
|
||||
.addClass('marked')
|
||||
.find(':checkbox')
|
||||
.prop('checked', true)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user