After enabling "On site chat infos" in block menu, i receive following error

Strict warning: Only variables should be passed by reference in chatblock_format_infos() (line 357 of {mysite}/sites/all/modules/chatblock/chatblock.module).

Disabling the block again, also results into removing the error message.

Comments

Zsuffa Dávid’s picture

This solved the issue for me.

//$output .= drupal_render(drupal_get_form('chatblock_format_infos_form'));
$tmp = drupal_get_form('chatblock_format_infos_form');
$output .= drupal_render($tmp);

As mentioned here.

Same can be applied around lines 774

$output .= drupal_render(drupal_get_form('chatblock_chatform'));
VBN’s picture

Status: Active » Closed (fixed)