Quote:
Originally Posted by sv1cec
I have one question. An admin of one forum cannot delete a thread from the forumdisplay, while he can from the thread tools within the thread. I checked your code in inlinemod.php and it appears that you are using the following conditional:
PHP Code:
if (!can_moderate($vars['forumid'], 'canremoveposts'))
{
print_no_permission();
}
Wouldn't that check for permanent deletion? I suppose that you should use candeleteposts, instead of canremoveposts, but I am not sure. Can you please clarify?
Rgds and tnx
|
Thanks for catching that. It should be candeleteposts, not canremoveposts; hard delete is a separate entity.