Quote:
Originally Posted by ragtek
ive made it so:
PHP Code:
if (($forumid == 16) || ($forumid == 7))
{
$vbulletin->options['edittimelimit'] = 0;
}
you can make instead of "$forumid" $vbulletin->userinfo['userid']==1
|
Okay but where do I put that? And do I change the first forum id to make it the forum I want it active in? And what would the code look like for say userid==3? Like this?
PHP Code:
if (($forumid == 34,38) || ($userid == 3))
{
$vbulletin->options['edittimelimit'] = 0;
}