diff --git modules/user/user.pages.inc modules/user/user.pages.inc
index ce23d67..abcad75 100644
--- modules/user/user.pages.inc
+++ modules/user/user.pages.inc
@@ -83,9 +83,14 @@ function user_pass_submit($form, &$form_state) {
 function user_pass_reset(&$form_state, $uid, $timestamp, $hashed_pass, $action = NULL) {
   global $user;
 
-  // Check if the user is already logged in. The back button is often the culprit here.
-  if ($user->uid) {
-    drupal_set_message(t('You have already used this one-time login link. It is not necessary to use this link to login anymore. You are already logged in.'));
+  // See if the user is aleady logged in with this uid.
+  if ($user->uid && $user->uid == $uid) {
+    drupal_set_message(t("You are already logged in as %user so you don't need to use the one-time login link you clicked.",array('%user'=>$user->name)));
+    drupal_goto();
+  }
+  // Or if somebody else is logged in.
+  else if ($user->uid && $user->uid != $uid) {
+    drupal_set_message(t("Someone is already logged into the site on this computer. Please <a href='!link'>logout</a> and try using the link again.",array('!link'=>url('logout'))));
     drupal_goto();
   }
   else {
