ad_get_user_info

one of the documented procedures in this installation of the ACS
Usage:
ad_get_user_info
What it does:
Sets first_name, last_name, email in the environment of its caller.
Defined in: /web/philip/packages/acs-core/defs-procs.tcl

Source code:


    uplevel {set user_id [ad_get_user_id]
    if [catch {set selection [ns_db 1row $db "select * from users where user_id=$user_id"]} errmsg] {
	ad_return_error "Couldn't find user info" "Couldn't find user info."
	return
    }
    set_variables_after_query
}


philg@mit.edu