Index: includes/me_views_handler_argument_user_name.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/me/includes/Attic/me_views_handler_argument_user_name.inc,v
retrieving revision 1.1.4.3
diff -u -r1.1.4.3 me_views_handler_argument_user_name.inc
--- includes/me_views_handler_argument_user_name.inc	3 Apr 2009 10:13:28 -0000	1.1.4.3
+++ includes/me_views_handler_argument_user_name.inc	10 Apr 2009 07:00:07 -0000
@@ -83,9 +83,11 @@
     if (!_me_is_alias($this->options['wildcard']) && !empty($this->options['me_alias'])) {
       // Set a flag on the view so we know if we need to redirect or not.
       $this->view->me_redirect = $this->options['me_redirect'];
-
-      return parent::set_argument(_me_views_set_argument($arg, $this->view, $this->options['break_phrase'], TRUE));
+      $arg = _me_views_set_argument($arg, $this->view, $this->options['break_phrase'], TRUE);
     }
+
+    // We always need to return the parent::set_argument() call.
+    return parent::set_argument($arg);
   }
 }
 
Index: includes/me_views_handler_argument_user_uid.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/me/includes/me_views_handler_argument_user_uid.inc,v
retrieving revision 1.1.2.3.2.2
diff -u -r1.1.2.3.2.2 me_views_handler_argument_user_uid.inc
--- includes/me_views_handler_argument_user_uid.inc	3 Apr 2009 10:13:28 -0000	1.1.2.3.2.2
+++ includes/me_views_handler_argument_user_uid.inc	10 Apr 2009 07:00:08 -0000
@@ -83,9 +83,11 @@
     if (!_me_is_alias($this->options['wildcard']) && !empty($this->options['me_alias'])) {
       // Set a flag on the view so we know if we need to redirect or not.
       $this->view->me_redirect = $this->options['me_redirect'];
-
-      return parent::set_argument(_me_views_set_argument($arg, $this->view, $this->options['break_phrase']));
+      $arg = _me_views_set_argument($arg, $this->view, $this->options['break_phrase']);
     }
+
+    // We always need to return the parent::set_argument() call.
+    return parent::set_argument($arg);
   }
 }
 
