|
|
Ok - I've upped the number of votes required for several of the more simple moderation actions in order to make them slightly harder to be accomplished. This will mean slightly more work for moderators but should also result in slightly more checks and balances in place. I've got another idea I'm going to test out in the next few days if I can persuade cal to do it. This is how they currently look in the code - if anyone has any better ideas for how the votes should be weighted, feel free to post them below:
add_action("POST_DELETE",2,"Delete Post");
add_action("POST_MODIFY",2,"Modify Post");
add_action("TOPIC_DELETE",3,"Delete Topic");
add_action("TOPIC_MOVE",1,"Move Topic");
add_action("TOPIC_MODIFY_TITLE",2,"Modify Topic Title");
add_action("TOPIC_MODIFY_ABSTRACT",2,"Modify Topic Abstract");
add_action("TOPIC_LOCK",2,"Lock Topic");
add_action("TOPIC_UNLOCK",2,"Unlock Topic"); |
|
|