PDA

View Full Version : One forum different edit time then the rest


Dabbi
01-22-2008, 06:39 PM
Hi,

There's one forum that I don't want to allow as much edit time as the rest of the board but would like to allow at least a few minutes for editing typos and such. Currently it's set to no in that area but it's so frustrating for members when the forgot to add a link or make a typo.

I've tried variety of search keywords here and asked on vBcom but am not finding anything. I was told on vBcom that it's not possible but that there might be a mod.. if there is I'm totally missing it and would appreciate any help. :)

Thanks! :cool:

ragtek
01-22-2008, 07:02 PM
you could make a plugin at hook global_start:
if (($forumid == 16) || ($forumid == 7))
{
$vbulletin->options['edittimelimit'] = 0;
}
just change the forumid and the timelimit

Dabbi
01-23-2008, 12:15 AM
Thank you for replying and for that code. :)

I just found this new mod after searching some more: https://vborg.vbsupport.ru/showthread.php?t=136448 Is this basically the same thing or different? I'm new at this so much of it is like learning a new language. :)