How can I add 'cache' => false, when calling a block from the body field of a page?

edited April 2014 in Bug Reports
Doing this in the template is straight-forward:
<?php echo fuel_block(array('view' => 'my-block', 'cache' => FALSE)); ?>

But I'm not sure how to do it when loading a block from the body field on a page
{fuel_block('my-block')}

Comments

  • edited 3:46PM
    If you put in the following and save, it should translate it to the proper syntax:
    <?=fuel_block(array('view' => 'my-block', 'cache' => FALSE)); ?>
  • edited 3:46PM
    Thanks, that worked :)
Sign In or Register to comment.