View Full Version : Individual editing privledge
aztecboi2003
05-26-2007, 02:03 PM
Is there a mod that allows this? I have users that need to be able to edit and manage stickys. My editing for everyone is set to 5 mins only, to keep abuse down. I was told that I had to make a user a moderator of the particular forum they post in for them to be able to edit always. As you can see that doesn't work if I have 10 users who manage stickys. One of my mods can up with the idea for a forum for stickys only, but I am unsure if I want to add another forum for that.
cheat-master30
05-26-2007, 02:40 PM
Tried making a group that's not a moderator usergroup and moving all sticky topic editors to it, and allowing them to edit their own and other people's topics? Just don't give it a different name to the normal usergroup.
If not, there must be a modification here for it.
ragtek
05-26-2007, 02:58 PM
ive made it so:
if (($forumid == 16) || ($forumid == 7))
{
$vbulletin->options['edittimelimit'] = 0;
}
you can make instead of "$forumid" $vbulletin->userinfo['userid']==1
aztecboi2003
05-26-2007, 03:07 PM
ive made it so:
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?
if (($forumid == 34,38) || ($userid == 3))
{
$vbulletin->options['edittimelimit'] = 0;
}
ragtek
05-26-2007, 03:40 PM
ups
first: this is the code for a plugin by the hook global_start
if (in_array($forumid, array(7,16)) and $vbulletin->userinfo['userid']==3)
{
}
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.