Disable revision information in administration

Question:
How to disable Drupal revision information

Within the template.php file for the admin theme (e.g. Garland) enter the following:

# disable revisions
# Added by Zerotouch
# Ref http://drupal.org/node/289466
function phptemplate_node_form($form) {
unset($form['revision_information']);
return theme_node_form($form);
}