
08-27-2009, 01:13 AM
|
|
|
Join Date: Jul 2006
Posts: 224
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Veer
What about the following error, I'm getting on top of the header:
Code:
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in [path]/includes/init.php(298) : eval()'d code on line 654
|
A few pages back...
Did you do this?
Quote:
FOr those getting the array_merge warning, simply do this.
Open the *** Initialize app *** plugin and find this:
PHP Code:
$phrasegroups = array_merge($phrasegroups, array('vbnexus'));
And above put this:
PHP Code:
if ( !is_array ( $phrasegroups ) )
{
$phrasegroups = array ( );
}
|
|