? fivestar-comments.patch Index: fivestar_comment.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/fivestar/fivestar_comment.module,v retrieving revision 1.1.2.5 diff -u -p -r1.1.2.5 fivestar_comment.module --- fivestar_comment.module 10 Apr 2009 17:50:58 -0000 1.1.2.5 +++ fivestar_comment.module 21 Jun 2009 15:00:21 -0000 @@ -181,7 +181,7 @@ function fivestar_comment_update($cid, $ */ function fivestar_comment_insert($cid, $nid, $uid, $value) { $vote = _fivestar_cast_vote('node', $nid, $value, 'vote', $uid); - db_query('INSERT INTO {fivestar_comment} (cid, value) VALUES (%d, %d)', $cid, $vote['user']['vote_id'], $value); + db_query('INSERT INTO {fivestar_comment} (cid, vote_id, value) VALUES (%d, %d, %d)', $cid, $vote['user']['vote_id'], $value); } /**