Quote:
Originally posted by NTLDR
In postings.php find:
PHP Code:
if ($action=="deletethread") {
Add after:
PHP Code:
// Edit Only Admin Delete Thread
if ($bbuserinfo[usergroupid]!=6) {
show_nopermission();
}
Find:
PHP Code:
if ($action=="deleteposts") {
Add after:
PHP Code:
// Edit Only Admin Delete Posts
if ($bbuserinfo[usergroupid]!=6) {
show_nopermission();
}
This will show the no permission error if the user isn't an admin and they try to delete a post/thread.
|
You are awesome, thank you so much :banana: