Quote:
Originally Posted by jmurrayhead
Wait, found something...I set all of the "Additional Restrictions" to 2 warnings before avatars, signatures, etc begin to be cut off, and it cuts if off for everyone, regardless if they have warnings or not.
EDIT:
Just a request: currently, when you're using the AWS, it doesn't update the user's last activity. It states, "Unknown Location:" and then the URL. Perhaps you could make it say something like "Using Advanced Warning System" or something like that.
|
it should already do that
PHP Code:
if($filename == 'Warn.php')
{
$userinfo['activity'] = 'warning_area';
}
PHP Code:
if ($userinfo['activity'] == 'warning_area')
{
$userinfo['where'] = "<a href=\"Warn.php{$vbulletin->session->vars['sessionurl_q']}\">" . $vbphrase['aws_warning'] . "</a>";
$userinfo['action'] = $vbphrase['aws_usingaws'];
$handled = true;
}