Zorro_X 3 Report post Posted February 21 Hi, It sounds more like an evolution regarding new functionnalities of V4.5, but maybe someone may indicate how to patch the automation rules original code to allow create actions on subjects that enables/disables post approval. Z Quote Share this post Link to post Share on other sites
alexis 35 Report post Posted February 22 You may try to realize your needs through access to the database using a PHP action in your rule. As far as I know, once post approval is enabled for a topic, at least two important changes inserted into the database: core_content_meta table and forums_topics table. Into the first table such a line is inserted like this: 53 IPS\forums\Topic 95519 core_ItemModeration {"enabled":true,"member":1} And the line in the forums_topics table with topic ID 95519 has the column TOPIC_META_DATA changed from 0 to 1. Also, there should be some specific logs inserted, saying that a moderator enabled post approval in a certain topic. So, you can start with this. I assume it is possible using this way. 1 Quote Share this post Link to post Share on other sites
Zorro_X 3 Report post Posted February 22 thankyou, I'll try on a sandbox ! Quote Share this post Link to post Share on other sites