Index: nodereview_node_nodereview.inc
===================================================================
--- nodereview_node_nodereview.inc	(revision 80)
+++ nodereview_node_nodereview.inc	(working copy)
@@ -250,7 +250,9 @@
   $overall = _nodereview_calculate_overall_score($scores);
   $votes[] = (object) array('value' => $overall, 'tag' => 'vote');
 
-  votingapi_set_vote('node', $node->reviewed_nid, $votes, $user->uid);
+  // Enter the vote for this node's owner.  We can't assume it's the current
+  // user because an administrator may be editing someone else's node.
+  votingapi_set_vote('node', $node->reviewed_nid, $votes, $node->uid);
 
   // If this is a review node that we're reviewing, the above score should
   // also affect the intial reviewer's rating.
