function devel_switch_user_form_validate
Validate handler for the Switch user form.
File
-
./
devel.module, line 1050
Code
function devel_switch_user_form_validate($form, &$form_state) {
if (!($account = user_load_by_name($form_state['values']['username']))) {
form_set_error('username', t('Username not found'));
}
}