--- follow.module	2010-06-08 10:31:48.000000000 -0700
+++ follow.module-allow-user-argument	2010-06-08 10:30:55.000000000 -0700
@@ -168,8 +168,16 @@ function follow_block($op = 'list', $del
         }
         break;
       case 'user':
-        $uid = arg(1);
-        if (arg(0) == 'user' && is_numeric($uid) && ($content = _follow_block_content($uid))) {
+        $uid = null;
+        
+        if (arg(0) == 'user'){
+          $uid = arg(1);
+        }elseif(isset($edit['uid']) && is_numeric($edit['uid'])){
+          $uid = $edit['uid'];
+        }
+        
+        
+        if (is_numeric($uid) && ($content = _follow_block_content($uid))) {
           return array(
             'subject' => _follow_block_subject($uid),
             'content' => $content,
