To get the field for entering reason for deleting a thread, you need the Prime Topic Moved Info MOD.DJ Skitzo wrote:Right, I done that change and everything works fine apart from I do not get the option to enter a reason for deleting when deleting an actual thread, although I can still enter a reason when only deleting a single post.
And is it possible to make it so that guests and registered users cannot see the message saying this post has been deleted and could I possibly change something so that moderators cannot permanantly delete posts?
Moderators are not supposed to be able to permanently delete posts unless they have the ability to permanently delete threads from the recycle bin forum. Is that still not working right?
The function that makes the display message for deleted posts is set_recycled_post_msg() and is found in "includes/prime_recycle_bin.php". So if you want to hide the message for certain users then you'll have to do some editing there. I'd say go to the bottom of the function and add something like this:
Code: Select all
if (!$auth->acl_get('m_') && !$auth->acl_get('a_'))
{
$recycled_msg = '';
}