diff --git a/twitter.inc b/twitter.inc
index 6f04f83..eaa21b0 100644
--- a/twitter.inc
+++ b/twitter.inc
@@ -167,7 +167,7 @@ function twitter_load_authenticated_accounts($uid = NULL, $access_global = TRUE,
       // Only include either global accounts or, if a $uid was passed in,
       // accounts that are owned by the requested user.
       if ($force
-        || ($access_global && $twitter_account->is_global)
+        || ($access_global || $twitter_account->is_global)
         || (isset($uid) && $uid == $twitter_account->uid)) {
         $auth_accounts[] = $twitter_account;
       }