Compare commits

..

No commits in common. "734090af68b53c26a68585c85f4065c89e0c7970" and "bdefd141ecbce902ec997862e12f90cb3f57ce21" have entirely different histories.

View File

@ -197,7 +197,7 @@ class HTTPBulkToolsResponse extends HTTPResponse
*/
public function addSuccessRecords(SS_List $records)
{
$this->successRecords = array_merge($this->successRecords, $records->toArray());
array_push($this->successRecords, $records->toArray());
return $this;
}