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:
Jakub Stanecki 2017-09-11 20:58:12 -03:00 committed by Maurício Meneghini Fauth
parent 409918e4ae
commit 2192fadc0b
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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)