Block Manager Error

Dear friends,



Why am I seeing this warning message/error?



Warning: array_merge(): Argument #2 is not an array in /home/mydomain/public_html/app/Tygh/BlockManager/Block.php on line 706



Please help me. Thanks in advance.

[quote name='payme.lk' timestamp='1426426575' post='207988']

Dear friends,



Why am I seeing this warning message/error?



Warning: array_merge(): Argument #2 is not an array in /home/mydomain/public_html/app/Tygh/BlockManager/Block.php on line 706



Please help me. Thanks in advance.

[/quote]



Hi



I am facing the same issue, can you please tell me if your issue was resolved and what the resolution was?

hi,



Please try to update the app/Tygh/BlockManager/Block.php file, replace



$params = array_merge($params, $block['content']);


with this:


if (is_array($block['content'])) {
$params = array_merge($params, $block['content']);
}




Please let us know result.



best regards,

WSA team