? user_relationships_views-current_user.patch
Index: user_relationship_views/user_relationship_views.views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/user_relationships/user_relationship_views/Attic/user_relationship_views.views.inc,v
retrieving revision 1.1.2.5
diff -u -p -r1.1.2.5 user_relationship_views.views.inc
--- user_relationship_views/user_relationship_views.views.inc	7 Nov 2009 21:47:04 -0000	1.1.2.5
+++ user_relationship_views/user_relationship_views.views.inc	27 Jul 2010 18:13:48 -0000
@@ -92,6 +92,14 @@ function user_relationship_views_views_d
         'help' => t('Bring in data about the user who started the relationship, or link to relationships that they have established'),
       ),
     ),
+    'requester_id_current' => array(
+      'real field' => 'requester_id',
+      'title' => t('Requester user is current user'),
+      'help' => t('Current user who started the relationship'),
+      'filter' => array(
+        'handler' => 'views_handler_filter_user_current'
+      ),
+    ),
     'requestee_id' => array(
       'title' => t('Requestee user'),
       'help' => t('User who accepted the relationship'),
@@ -115,6 +123,14 @@ function user_relationship_views_views_d
         'help' => t('Bring in data about the user who accepted the relationship, or link to relationships that other users have established to this one'),
       ),
     ),
+    'requestee_id_current' => array(
+      'real field' => 'requestee_id',
+      'title' => t('Requestee user is current user'),
+      'help' => t('Current user who accepted the relationship'),
+      'filter' => array(
+        'handler' => 'views_handler_filter_user_current'
+      ),
+    ),
     'approved' => array(
       'title' => t('Relationship status'),
       'help' => t('Pending/approved relationship status'),
