 token_user.inc |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/token_user.inc b/token_user.inc
index ece51a0..33d1607 100644
--- a/token_user.inc
+++ b/token_user.inc
@@ -22,6 +22,7 @@ function user_token_list($type = 'all') {
     $tokens['user']['user-raw'] = t("The login name of the user account.");
     $tokens['user']['uid']      = t("The unique ID of the user account.");
     $tokens['user']['mail']     = t("The email address of the user account.");
+	$tokens['user']['logged-in']= t("The user is authenticated or anonymous.");	
 
     $tokens['user'] += token_get_date_token_info(t("User's registration"), 'user-created-');
     $tokens['user'] += token_get_date_token_info(t("User's last login"), 'user-last-login-');
@@ -57,7 +58,8 @@ function user_token_values($type, $object = NULL, $options = array()) {
       $values['user-raw'] = $account->name;
       $values['uid']      = $account->uid;
       $values['mail']     = $account->uid ? $account->mail : '';
-
+	  $values['logged-in']= $account->uid ? t("Authenticated") : t("Anonymous")
+	  
       if ($account->uid) {
         $values += token_get_date_token_values($account->created, 'user-created-');
         $values += token_get_date_token_values($account->access, 'user-last-login-');
