Index: user_relationships/user_relationships_api/user_relationships_api.module
===================================================================
--- user_relationships/user_relationships_api/user_relationships_api.module	(revision 2765)
+++ user_relationships/user_relationships_api/user_relationships_api.module	(working copy)
@@ -294,14 +294,17 @@
  * Implementation of hook_token_list().
  */
 function user_relationships_api_token_list($type = 'all') {
-  if ($type == 'user_relationships_api') {
+  if ($type == 'requester') {
     $tokens['user_relationships_api'] = array(
       'requester' => t('The user who issued the connection request.'),
-      'requestee' => t('The user who approved the connnection request.'),
+    );
+  }else if ($type = 'relationship'){
+	$tokens['user_relationships_api'] = array(      
+	  'requestee' => t('The user who approved the connnection request.'),
       'relationship-name' => t('The relationship name (singular form)'),
     );
-    return $tokens;
   }
+  return $tokens;
 }
 
 /**
