PDA

View Full Version : Time Limit of Editing on Posts, assigned to a particular forum


Anbas
10-07-2006, 08:08 AM
I want all members of a special forum (e.g. forum id=12) to be allowed to modify/delete their own posts, without any time limit. In all the other forums the time limit of editing on posts depends on the admincp parameter.

Anbas

ragtek
10-07-2006, 09:03 AM
make a new plugin with:

hook: global start
code: if ($forumid == 10)
{
$vbulletin->options['edittimelimit'] = 0;
}

Anbas
10-07-2006, 07:17 PM
Thanks ragtek. Seems to work fine.