Doh, I should have known that...
I have found an error message, actually. When viewing certain member profiles I seem to get this message:
Quote:
Fatal error: Call to undefined function: bitwise() in /home/keepthem/public_html/forums/member.php on line 562
|
Lines 558 - 574 is this chunk of code:
Code:
// ##################################### Start Buddies List ##################################
// ===========================================================================================
// Check and see what information is to be shown for each member listed . (Edit by: Lucas)
// ===========================================================================================
$show['display_birthday'] = bitwise($vboptions['buddieslist_profiledisplayoptions'], 1);
$show['display_age'] = bitwise($vboptions['buddieslist_profiledisplayoptions'], 2);
$show['display_joindate'] = bitwise($vboptions['buddieslist_profiledisplayoptions'], 4);
$show['display_postcount'] = bitwise($vboptions['buddieslist_profiledisplayoptions'], 8);
$show['display_usertitle'] = bitwise($vboptions['buddieslist_profiledisplayoptions'], 16);
$show['display_lastvisit'] = bitwise($vboptions['buddieslist_profiledisplayoptions'], 32);
$show['display_avatar'] = bitwise($vboptions['buddieslist_profiledisplayoptions'], 64);
$show['display_onlinestatus'] = bitwise($vboptions['buddieslist_profiledisplayoptions'], 128);
// ===========================================================================================
// Start main buddy list. (Edit by: Lucas)
// ===========================================================================================
It only happens on some profiles though.