when I add a trigger for "Make post private to its groups"?

Comments

jweowu’s picture

Lots of actions update a node object in memory, but do not save it to the database.

They flag this by setting 'changes_node_property' in their hook_action_info() definition.

trigger_assign_form_submit() picks up on that property, and appends node_save_action to the list of actions.

brisath’s picture

Status: Active » Closed (fixed)

Thanks for the explanation. I assume I should just leave it as is, and not delete any of these "save post" triggers because it won't interfere with the intended action.

jweowu’s picture

Yes, deleting the "save post" action would mean that the changes made by the other action would be lost.