Spin off from #563562: Batch API pages should not show the toolbar.
The system_batch_page() page callback has some code to not display blocks (logic is the same as for the issue linked above: do not encourage users to click away from the processing page, which can leave the site in an undecided state).
$output = ...;
// Force a page without blocks or messages to
// display a list of collected messages later.
drupal_set_page_content($output);
$page = element_info('page');
$page['#show_messages'] = FALSE;
return $page;
This code doesn't work anymore with D7 $page rendering changes, and blocks are currently displayed on batch pages.
I'm not sure of the best way to do this now.
Comments
Comment #2
yoroy commentedYes, sounds legit to do.
Comment #3
yoroy commentedActually, I created and then deleted a user account in my local, current D8 and D7 installations and couldn't reproduce: I get the progress bar *without* any blocks.
Is any page that shows the blue progess bar a batch page? If so, than this doesn't seem to be an issue anymore.
Comment #12
quietone commentedAsking in #bugsmash about testing this now. pameeela pointed out that since yoroy could not reproduce it and there has been no comments since then it can be closed.
Therefore, closing as cannot reproduce.
Comment #13
pameeela commentedJust posting that I confirmed this: