Hello,
When upgrading to new module a number of my currently set up views exports failed with the drush -d error console reporting "The file could not be copied to the selected destination"
on inspecting the code I noticed that it was failing because it wasn't actually creating the file in tmp so therefore couldn't copy.
it appears to me that within the file around line 183 where the code executes
$view->execute_display($display_id, $arguments);
if the export isn't batched the $arguments is empty and causes the export to fail. Amending the code to read
$view->execute_display($display_id);
fixes the problem.
Comments
Comment #2
cgove commentedThis change also works for me. I wonder if there are other consequences from it though.
Comment #3
denix commentedthis has been corrected in 3.2