node_assign_owner_action($node, $context)Assigns ownership of a node to a user.
$node A node object to modify.
$context Array with the following elements:
modules/node/node.module, line 3389
<?php
function node_assign_owner_action($node, $context) {
$node->uid = $context['owner_uid'];
$owner_name = db_query("SELECT name FROM {users} WHERE uid = :uid", array(':uid' => $context['owner_uid']))->fetchField();
watchdog('action', 'Changed owner of @type %title to uid %name.', array('@type' => node_type_get_type($node), '%title' => $node->title, '%name' => $owner_name));
}
?>