I discovered this issue when I was trying to modify the placeholder HTML code.
When I changed the placeholder HTML in BigPipeStrategy.php, BigPipe stopped working.
After investigating into the problem, I found that there are two occurrence of basically the same string:
Line 168 in file BigPipeStrategy.php
:
return [
'#markup' => '<div data-big-pipe-placeholder-id="' . Html::escape($big_pipe_placeholder_id) . '"></div>',
Line 419 in file BigPipe.php
:
$fragments = explode('<div data-big-pipe-placeholder-id="', $html);
array_shift($fragments);
$order = [];
foreach ($fragments as $fragment) {
$t = explode('"></div>', $fragment, 2);
Replace those 2 occurrences with reference to the same string. I tried adding a new BigPipeConfig.php
, but there should be more elegant ways to do so.
Closed: duplicate
8.2 ⚰️
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
No activities found.