Merge pull request #11369 from devenbansod/issue_11367
Fix Issue #11367
This commit is contained in:
commit
b85267c151
@ -56,6 +56,15 @@ case 'edit':
|
||||
}
|
||||
|
||||
if (!empty($submit_mult)) {
|
||||
|
||||
if (! isset($_REQUEST['rows_to_delete'])
|
||||
|| ! is_array($_REQUEST['rows_to_delete'])
|
||||
) {
|
||||
$response = PMA_Response::getInstance();
|
||||
$response->isSuccess(false);
|
||||
$response->addJSON('message', __('No row selected.'));
|
||||
}
|
||||
|
||||
switch($submit_mult) {
|
||||
case 'row_edit':
|
||||
// As we got the rows to be edited from the
|
||||
|
||||
Loading…
Reference in New Issue
Block a user