Permanently Remove Create Revision In Drupal 6

Last modified: 
Sunday, March 29th, 2015
Topics: 
Drupal6Drupal

How To Permanently Remove The Create Revision Option In Drupal 6

Permanently disable the Create Revision option in Drupal 6 for all users including those with Administer Nodes permissions by adding the following to template.php:

function phptemplate_node_form($form) {
    $form['revision_information']['#access'] = FALSE;
    return theme_node_form($form);
}

References

Disable revisioning for node


The operator of this site makes no claims, promises, or guarantees of the accuracy, completeness, originality, uniqueness, or even general adequacy of the contents herein and expressly disclaims liability for errors and omissions in the contents of this website.