Hi
I get the following error on viewing the blog items:
Strict warning: Only variables should be passed by reference in include() (line 23 of .../sites/all/themes/jollyness/templates/views/views-view--blog--blog-tabbed.tpl.php).
I dont see the error on the demo site tho, only on my installation.
What does that error mean ?
Best regards
Tor
Hi T(H?)or,
Is this the only error? After installation I had some errors (I believe this was one of them but not 100% sure /oops).
For me all was solved by correcting the TMP path. (which was one of the other errors)
Regards, Edwin
Hi
Thanks for your reply !
That is not the problem, since I have already fixed the File system paths.
By the way my name is spelled Tor (without the H :) )
Bstrgds
Tor
Is there a fix for this?
Got the same issue but on a different page (Blocks > Blocks > Instances);
Error;
Strict warning: Only variables should be passed by reference in multiblock_general() (regel 131 van /home/vanderg2/domains/likeabc.nl/public_html/hlg/profiles/drupalexp_jollyness/modules/contrib/multiblock/multiblock.module).
Hello Tor,
Sorry, for late rely.
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