function tokenauth_user_reset in Token authentication 6
Same name and namespace in other branches
- 5 tokenauth.module \tokenauth_user_reset()
- 6.2 tokenauth.inc \tokenauth_user_reset()
API function to reset a user's token.
Parameters
$uid: User ID of the user whose token to reset.
Deprecated
Use tokenauth_reset_user() instead.
File
- ./
tokenauth.inc, line 75 - Provides tokenauth API for Token Authentication module.
Code
function tokenauth_user_reset($uid = NULL) {
return tokenauth_reset_user($uid);
}