I had this problem myself. Key things:
- Content type is in moderation through Workbench moderation module
- Set a new moderation status
- Set node as a new revision
Drupal takes care of the rest.
<?php $node = node_load($nid); $node->body[LANGUAGE_NONE][0]['value'] = 'My new body content';
This currently works in my codebase.
source share