I did debugging and the issue lies with the
code. It is returning false
Here is my debug code
PHP Code:
print_log('checking if active: '. $ozzmodz_editable_post['active']);
print_log('users: ' . implode(',',$allowed_users));
print_log('forums: ' . implode(',',$included_forums));
print_log('Post uid: ' . $this->post['userid']. ' VB uid: ' . vB::$vbulletin->userinfo['userid']);
print_log('Post id: ' . $this->post['postid'] . ' First PostID: ' . $this->thread['firstpostid']);
print_log('Forum in array: ' . in_array($this->thread['forumid'], $included_forums));
print_log('is_member_of: ' . is_member_of($vbulletin->userinfo, $allowed_users));
output
PHP Code:
11.08.2014 19:37:03 testaccount checking if active: 1
11.08.2014 19:37:03 testaccount users: 2,-1
11.08.2014 19:37:03 testaccount forums: 61,66
11.08.2014 19:37:03 testaccount Post uid: 334 VB uid: 334
11.08.2014 19:37:03 testaccount Post id: 115630 First PostID: 115630
11.08.2014 19:37:03 testaccount Forum in array: 1
11.08.2014 19:37:03 testaccount is_member_of:
11.08.2014 19:37:03 testaccount checking if active: 1
11.08.2014 19:37:04 testaccount users: 2,-1
11.08.2014 19:37:04 testaccount forums: 61,66
11.08.2014 19:37:04 testaccount Post uid: 3 VB uid: 334
11.08.2014 19:37:04 testaccount Post id: 115679 First PostID: 115630
11.08.2014 19:37:04 testaccount Forum in array: 1
11.08.2014 19:37:04 testaccount is_member_of:
11.08.2014 19:37:04 testaccount checking if active: 1
11.08.2014 19:37:04 testaccount users: 2,-1
11.08.2014 19:37:04 testaccount forums: 61,66
11.08.2014 19:37:04 testaccount Post uid: 63 VB uid: 334
11.08.2014 19:37:04 testaccount Post id: 115681 First PostID: 115630
11.08.2014 19:37:04 testaccount Forum in array: 1
11.08.2014 19:37:04 testaccount is_member_of:
11.08.2014 19:37:04 testaccount checking if active: 1
11.08.2014 19:37:04 testaccount users: 2,-1
11.08.2014 19:37:04 testaccount forums: 61,66
11.08.2014 19:37:04 testaccount Post uid: 3649 VB uid: 334
11.08.2014 19:37:04 testaccount Post id: 115682 First PostID: 115630
11.08.2014 19:37:04 testaccount Forum in array: 1
11.08.2014 19:37:04 testaccount is_member_of:
11.08.2014 19:37:04 testaccount checking if active: 1
11.08.2014 19:37:04 testaccount users: 2,-1
11.08.2014 19:37:04 testaccount forums: 61,66
11.08.2014 19:37:04 testaccount Post uid: 63 VB uid: 334
11.08.2014 19:37:04 testaccount Post id: 115683 First PostID: 115630
11.08.2014 19:37:04 testaccount Forum in array: 1
11.08.2014 19:37:04 testaccount is_member_of:
11.08.2014 19:37:05 testaccount checking if active: 1
11.08.2014 19:37:05 testaccount users: 2,-1
11.08.2014 19:37:05 testaccount forums: 61,66
11.08.2014 19:37:05 testaccount Post uid: 334 VB uid: 334
11.08.2014 19:37:05 testaccount Post id: 115687 First PostID: 115630
11.08.2014 19:37:05 testaccount Forum in array: 1
11.08.2014 19:37:05 testaccount is_member_of:
also not sure why it has -1 as a group as I really only have Registered Users group active right now