Quote:
Originally Posted by R-D
Commenting out this chunk of code in myfriends.php fixes that error, seemingly with no adverse effects.
Code:
$profileblock =& $blockfactory->fetch('ProfileFields');
$profileblock->build_field_data();
foreach ($profileblock->locations AS $profilecategoryid => $location)
{
if ($location)
{
$blocklist["profile_cat$profilecategoryid"] = array(
'class' => 'ProfileFields',
'title' => $vbphrase["category{$profilecategoryid}_title"],
'options' => array('category' => $profilecategoryid),
'hook_location' => $location
);
}
}
|
This works to solve the error!