diff -Naur revision_moderation_HEAD/revision_moderation.info revision_moderation/revision_moderation.info --- revision_moderation_HEAD/revision_moderation.info 1969-12-31 18:00:00.000000000 -0600 +++ revision_moderation/revision_moderation.info 2007-01-24 16:53:48.000000000 -0600 @@ -0,0 +1,7 @@ +; $Id: revision_moderation.info,v 2.1 2007/01/24 16:56:00 cbutera Exp $ +name = "Revision Moderation" +description = "A site may wish to have nodes go into moderation before they are published, and to have any further changes made to the node stored as revisions. The default behaviour of Drupal under these circumstances is to unpublish the entire node when new revisions are present. However, this is not usually desirable, since that makes the node inaccessible to all but node administrators. The Revision Moderation module allows you to leave existing revisions of a node published while new revisions go into moderation for an administrator to approve. This module is designed to work with Drupal 4.7.x. It may still be buggy. Please use with care. : This module was sponsored by The New America Foundation and had very helpful input from edkwh." +version = "$Name: DRUPAL-5 $" +package = Administration +version = "5.x-1.x-dev" +project = "revision_moderation" diff -Naur revision_moderation_HEAD/revision_moderation.module revision_moderation/revision_moderation.module --- revision_moderation_HEAD/revision_moderation.module 2006-11-04 11:27:39.000000000 -0600 +++ revision_moderation/revision_moderation.module 2007-01-24 16:54:58.000000000 -0600 @@ -7,7 +7,7 @@ */ // Actions module support. -if (module_exist('actions')) { +if (module_exists('actions')) { include_once 'revision_moderation_actions.inc'; }