mirror of
https://github.com/colymba/GridFieldBulkEditingTools.git
synced 2024-10-22 11:05:57 +02:00
fix undefined index notice
$body['records'] is only defined if entering the if clause and therefore the count on line 349 can cause undefined index errors
This commit is contained in:
parent
7de4f77574
commit
b00987b735
@ -346,7 +346,7 @@ class HTTPBulkToolsResponse extends HTTPResponse
|
||||
$body['records']['failed'] = $this->failedRecords;
|
||||
}
|
||||
|
||||
if (count($body['records']['success']) === 0) {
|
||||
if (isset($body['records']['success']) && count($body['records']['success']) === 0) {
|
||||
$body['isWarning'] = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user