AnhTuanCool
08-07-2004, 10:00 PM
What will it do, as I said on the title, it assigns the permission of showing Physical Delete Function to a Specific User or Usergroup. :devious:
Open up file editpost.php
Find:
$show['physicaldeleteoption'] = iif (can_moderate($threadinfo['forumid'], 'canremoveposts'), true, false);
Replace with:
if ($bbuserinfo['usergroupid'] == '6')
{
$show['physicaldeleteoption'] = iif (can_moderate($threadinfo['forumid'], 'canremoveposts'), true, false);
}
else
{
$show['physicaldeleteoption'] = false;
}
Save it up.
This line
if ($bbuserinfo['usergroupid'] == '6')
is showing the usergroup that have the permission to view(use) physical delete. You can look up in your admincp > Usergroup Manager to get your proper id that you want to have permission of viewing(using) physical del or you could change it to
if ($bbuserinfo['userid'] == '1')
and replace 1 with your userid.
If you install this plz click Install, this is my first hand hack so plz supporting me. :D Have a nice day.
Need screenshot, look at the attachment. ^__^
Open up file editpost.php
Find:
$show['physicaldeleteoption'] = iif (can_moderate($threadinfo['forumid'], 'canremoveposts'), true, false);
Replace with:
if ($bbuserinfo['usergroupid'] == '6')
{
$show['physicaldeleteoption'] = iif (can_moderate($threadinfo['forumid'], 'canremoveposts'), true, false);
}
else
{
$show['physicaldeleteoption'] = false;
}
Save it up.
This line
if ($bbuserinfo['usergroupid'] == '6')
is showing the usergroup that have the permission to view(use) physical delete. You can look up in your admincp > Usergroup Manager to get your proper id that you want to have permission of viewing(using) physical del or you could change it to
if ($bbuserinfo['userid'] == '1')
and replace 1 with your userid.
If you install this plz click Install, this is my first hand hack so plz supporting me. :D Have a nice day.
Need screenshot, look at the attachment. ^__^