MyBB Community Forums

Full Version: SocialSites Plugin Error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Report this:

Type: 2
File: inc/plugins/socialsites.php (Line no. 642)
Message
Invalid argument supplied for foreach()

In ./inc/plugins/socialsites.php, line 633:

$uid = intval($uid);

After, add:

if(empty($sites))
{
	$sites = array();
}
Ok, thanks.