On any page where the TABBED WIDGET block is included I see the following error.
Strict warning: Only variables should be passed by reference in include() (line 23 of /var/www/vhosts/ck.wmservices.net/httpdocs/sites/all/themes/jollyness/templates/views/views-view--blog--blog-tabbed.tpl.php).
Happy Sunday,
Thanks
Hello del,
To fix the error go to line 23 (views-view--blog--blog-tabbed.tpl.php) and replace this line
$output = drupal_render(_block_get_renderable_array(_block_render_blocks(array($block))));
by:
$content_render = _block_get_renderable_array(_block_render_blocks(array($block)));
$output = drupal_render($content_render);
Thanks,