View Full Version : Supermod usergroup editing Request!
I don't want supermods to be able to delete threads anywhere, even their own. I don't want them to be able to mass prune or mass move either. How can this be achieved as it can't be done via the adminCP...
NTLDR
10-18-2002, 10:13 PM
Originally posted by Tha Rock
I don't want supermods to be able to delete threads anywhere, even their own. I don't want them to be able to mass prune or mass move either. How can this be achieved as it can't be done via the adminCP...
Just comment out the mass move/prune menu options in the Mod CP, this is what I have done.
Did you only want group 6 to delete posts? This is what I have done, I'll get the edits for you :)
NTLDR
10-18-2002, 10:16 PM
In postings.php find:
if ($action=="deletethread") {
Add after:
if ($bbuserinfo[usergroupid]!=6) {
show_nopermission();
}
Find:
if ($action=="deleteposts") {
Add after:
// Edit Only Admin Delete Posts
if ($bbuserinfo[usergroupid]!=6) {
show_nopermission();
}
Only admins can delete posts now, other uses will see the error no permission screen :D
Does that apply to threads aswell as posts?
NTLDR
10-18-2002, 10:42 PM
Yes, the first edit is for threads, the second is for posts :D
Ah didn't see that lol :D Thanks
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.