this works great on 3.8.3
i also have usergroups restrictions working
there are many suggestions in this thread to make that work but this is the only one that worked for me
find:
Code:
$datecut = "AND thread.lastpost >= " . (TIMENOW - ($daysprune * 86400));
$prefetched = null;
add below it:
Code:
if(is_member_of($vbulletin->userinfo,1, 2, 3, 8))
{
print_no_permission();
}