function node_assign_owner_action_validate in Drupal 6
Same name and namespace in other branches
- 7 modules/node/node.module \node_assign_owner_action_validate()
File
- modules/
node/ node.module, line 2744 - 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_validate($form, $form_state) {
$count = db_result(db_query("SELECT COUNT(*) FROM {users} WHERE name = '%s'", $form_state['values']['owner_name']));
if (intval($count) != 1) {
form_set_error('owner_name', t('Please enter a valid username.'));
}
}