Yes, this is possible. In your plugin manager, find a plugin named "warn_showthread_showlinks_and_points". In that plugin find:
Code:
if ($postadmin!=1 AND $postmod!=1 AND $postsmod!=1 AND ($useradmin==1 OR $usersmod==1 OR $usermod==1))
{
$showviewwarnlink=1;
}
Replace that with:
Code:
$showviewwarnlink=1;
Then open Warn.php and find:
Code:
if($_GET['do']!='ViewMyWarnings')
{
if(!can_moderate( ))
{
print_no_permission( );
}
}
Replace that with :
Code:
if($_GET['do']!='ViewMyWarnings' AND $_GET['do']!='ViewWarnings')
{
if(!can_moderate( ))
{
print_no_permission( );
}
}
I haven't tried it myself, but I gave those instructions to another member and he didn't come back to complain, so it should work.
Rgds