| 6 node.module | node_assign_owner_action_submit($form, $form_state) |
| 7 node.module | node_assign_owner_action_submit($form, $form_state) |
| 8 node.module | node_assign_owner_action_submit($form, $form_state) |
File
- modules/
node/ node.module, line 2751 - The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
Code
function node_assign_owner_action_submit($form, $form_state) {
// Username can change, so we need to store the ID, not the username.
$uid = db_result(db_query("SELECT uid from {users} WHERE name = '%s'", $form_state['values']['owner_name']));
return array('owner_uid' => $uid);
}
Login or register to post comments