could anyone say whether I have done this right or nor please
In the includes/function_showthread.php
part of the function construct_postbit
this is what it does currently
Code:
// hide users in Coventry from non-staff members
if ($tachyuser = in_coventry($post['userid']) AND !can_moderate($thread['forumid']))
{
return;
}
change to
Code:
// hide users in Coventry from non-staff members
if ($tachyuser = in_coventry($post['userid']) AND !$permissions['adminpermissions'])
{
return;
}
Basically trying to only show tachy messages if you are an admin, rather than anyone who can moderate. ???