Commit 5ef5db54 authored by Ivan Doroshenko's avatar Ivan Doroshenko Committed by Marcin Grabias
Browse files

Issue #3338246 by Matroskeen: Export actions (inherited from VboExportBase) do...

Issue #3338246 by Matroskeen: Export actions (inherited from VboExportBase) do not function without "Process in a batch operation" setting
parent d81edf84
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -585,8 +585,15 @@ class ViewsBulkOperationsActionProcessor implements ViewsBulkOperationsActionPro

      // Ensure compatibility with a Batch API process.
      $context = [
        'sandbox' => [],
        'results' => [],
        'sandbox' => [
          'processed' => 0,
          'total' => 0,
          'page' => 0,
          'current_batch' => 1,
        ],
        'results' => [
          'operations' => [],
        ],
      ];
      $this->setActionContext($context);