Pagekeeper:
Judging by my profile.php, you need to check you did this bit correctly ;
PHP Code:
Find:
if ($_REQUEST['do'] == 'removelist')
{
globalize($_REQUEST, array('userid' => INT, 'userlist' => STR));
if ($userlist != 'buddy')
------------------------------
Replace with:
if ($_REQUEST['do'] == 'removelist')
{
globalize($_REQUEST, array('userid' => INT, 'userlist' => STR));
if (($userlist != 'buddy') AND ($userlist != 'jbuddy'))
Only the final line has actually changed, so that might be the line at fault (and check you haven't overwritten the curly bracket on the next line).