You are here

function tokenauth_user_reset in Token authentication 6.2

Same name and namespace in other branches
  1. 5 tokenauth.module \tokenauth_user_reset()
  2. 6 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);
}