Quote:
Originally Posted by Lynne
NOT TESTED, but probably a plugin at the global_bootstrap_complete with something like this:
PHP Code:
if (THIS_SCRIPT == 'editpost')
{
global $foruminfo, $vbulletin;
if ($foruminfo['forumid']==xx)
{
$vbulletin->options['edittimelimit'] = yy;
}
}
change xx and yy to whatever you want. You can have as many if statements as you want within there.
|
I can't use this to set different edit times for different categories, can I?