the settings are in the included fucntions fileAcorn wrote:This is a fantastic mod - thanks very much.
I gather that you can restrict the ability to view post history to just admins rather than admins and moderators, but I can't see how to change this. Apologies if this is obvious to others - I'm only just getting used to phpBB3.
Thanks.
in /includes/prime_post_revisions.php todefine('APPROVE_REMOVAL_MODERATOR', true); // Can moderators (with the ability to delete posts) remove revisions?
but my global moderator can still view post history.define('APPROVE_REMOVAL_MODERATOR', false); // Can moderators (with the ability to delete posts) remove revisions?
Code: Select all
if (($this->approve_viewing = $auth->acl_get('m_info', $forum_id)) || APPROVE_VIEWING_POSTER)
Code: Select all
if (($this->approve_viewing = $auth->acl_get('m_info', $forum_id)) || APPROVE_VIEWING_POSTER)
Code: Select all
if (($this->approve_viewing = $auth->acl_get('a_')) || APPROVE_VIEWING_POSTER)
Code: Select all
define('SUBJECT_CHANGE_REVISION', false); // Store a revision when only the subject has been changed?
Not for me. I don't have the time to write that kind of algorithm.Daan1992 wrote:Is it possible to compare the the original and the most recent post en making the differents in another color?