Are there plans to upgrade the module to Drupal 6?

I have received a request to allow only one content type to have comments moderated. Unfortunately, I'm not a full fledged module developer so I haven't been able to create an upgraded module.

Comments

emackn’s picture

I'm not sure, I have to first check that can work in D6, and then make sure there are no other modules doing then same thing as this.

One question though, does all your 'other' content already allow comments, and you just want too moderate one specific type of node?

stevebayerin’s picture

Well the comment issue has been resolved by the person who has requested the functionality (I don't have all the details on how it has been resolved.)

The other content types allowed comments but they only wanted to moderate forum comments.

leevester’s picture

Did you ever figure out how this was accomplished?

leevester’s picture

I may have stumbled on a working solution.
This came from user "WorldFallz" giving a reply to http://drupal.org/node/90208#comment-2066006.

His idea is to disable the 'publish comments without approval' permissions, then use a rule triggered by the 'after saving new comment' event, with conditions for commented node type and user role, to published the comment immediately (use a php action to set $comment->status to 0).