I'm also having problems with this function. James, did you ever figure this out?
--------------- Added [DATE]1280612775[/DATE] at [TIME]1280612775[/TIME] ---------------
I just figured out my problem. I was trying to execute my code from within a custom function, but the function didn't have access to the $vbulletin variable. I did a
global $vbulletin; at the beginning of the function to bring it into scope and my code started working fine.
PHP Code:
function is_djdb_editor() {
global $vbulletin;
$is_editor=FALSE;
if (is_member_of($vbulletin->userinfo,5,6,7,31,37)) $is_editor=TRUE;
return $is_editor;
}