ibelphegor wrote:Some question and request
Who can see now the edit? i think only admin, correct?
For Delete history need to enter to specific post?
If all above correct i think option to delete automatic after X days will be great
and option to add permission to who can see edit history.
Anyone who has permission to view the post information can view the post history. If you want to let the post author view the history, then you can set that option inside the
includes/prime_post_revisions.php file. You will see some other permissions and options there as well:
Code: Select all
/**
* Permissions
*/
define('APPROVE_VIEWING_POSTER', false); // Can the post author view the revisions?
define('APPROVE_REMOVAL_POSTER', false); // Can the post author remove revisions?
define('APPROVE_REMOVAL_EDITOR', false); // Can the post editor remove their revision?
define('APPROVE_REMOVAL_MODERATOR', true); // Can moderators (with the ability to delete posts) remove revisions?
/**
* Options
*/
define('ENABLE_POST_REVISIONS', true); // Enable this MOD?
define('SUBJECT_CHANGE_REVISION', true); // Store a revision when only the subject has been changed?
define('REVISION_PAGE_HEADER', true); // Display the explanation about the viewing revisions page?
define('REVISION_POST_HEADERS', true); // Display the revision number in the posts' subject area?
define('REVISION_SIGNATURES', true); // Display signatures while viewing revisions?