This is not an error , this is a notice related to Facebook API changes and it is shown to Facebook app developer only .. your Facebook app should work though ignoring these permissions
in the file includes/class_facebook.php in line 84 you will find
PHP Code:
protected $connection_fields = array(
'activities',
'interests',
'music',
'movies',
'books',
'notes',
'website'
);
change to
PHP Code:
protected $connection_fields = array(
'music',
'movies',
'books',
'notes',
'website'
);
Not tested but should work