Quote:
Originally Posted by viper007
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /includes/functions.php(1259) : eval()'d code on line 5
i got the error ..when installed vb shout in all pages .. can plzzzz give reply fast .. urget plzzz..
|
this is how i was helped..
go to ur fetch hook and replace
HTML Code:
if (VB_AREA == "Forum")
{
global $globaltemplates;
$globaltemplates = array_merge($globaltemplates, array('forumhome_vbshout'));
}
with
HTML Code:
if (VB_AREA == 'Forum')
{
global $globaltemplates;
if (!is_array($globaltemplates))
{
$globaltemplates = array();
}
$globaltemplates = array_merge($globaltemplates, array('forumhome_vbshout'));
}
here is the link where i asked for help and got the response..
https://vborg.vbsupport.ru/showthrea...=167528&page=2
when i changed it there was no error everything working smoothly...check the link as well so u can be satisfied before u make any changes