File placeholders not generated in return value of of $block->display()
PermalinkHere's an example of an image that would be rendered as part of the content, missing the actual src:
<img src="{CCM:FID_407}" />
Here's some sample code being used to render the blocks
<?php $blocks = $someGlobalArea->getAreaBlocksArray($somePage); foreach($blocks as $block) { $block->display('templates/some_template'); }