Index: vote_up_down.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/vote_up_down/vote_up_down.module,v
retrieving revision 1.24.2.28
diff -u -r1.24.2.28 vote_up_down.module
--- vote_up_down.module	25 Mar 2009 20:15:23 -0000	1.24.2.28
+++ vote_up_down.module	22 Jun 2009 08:09:00 -0000
@@ -241,7 +241,8 @@
     $node_type = in_array($node->type, variable_get('vote_up_down_node_types', array()), TRUE);
     if ($node->nid && $node_type) {
       $style = variable_get('vote_up_down_widget_style_node', 0) == 1 ? '_alt' : '';
-      $variables['vote_up_down'] = theme("vote_up_down_widget$style", $node->nid, 'node');
+      $variables['vote_up_down_widget'] = theme("vote_up_down_widget$style", $node->nid, 'node');
+      $variables['vote_up_down_points'] = theme("vote_up_down_points$style", $node->nid, 'node');
     }
   }
 }
@@ -270,7 +271,8 @@
     $comment = $variables['comment'];
     if ($comment->cid) {
       $style = variable_get('vote_up_down_widget_style_comment', 0) == 1 ? '_alt' : '';
-      $variables['vote_up_down'] = theme("vote_up_down_widget$style", $comment->cid, 'comment');
+      $variables['vote_up_down_widget'] = theme("vote_up_down_widget$style", $comment->cid, 'comment');
+      $variables['vote_up_down_points'] = theme("vote_up_down_points$style", $comment->cid, 'comment');
     }
   }
 }

