Index: votingapi.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/votingapi/votingapi.module,v
retrieving revision 1.46.2.2
diff -u -r1.46.2.2 votingapi.module
--- votingapi.module	14 Jan 2008 22:55:08 -0000	1.46.2.2
+++ votingapi.module	15 Jan 2008 06:51:11 -0000
@@ -210,7 +210,7 @@
  *   The same votes, with vote_id keys populated.
  */
 function votingapi_add_votes(&$votes = array()) {
-  if (empty($votes['content_type'])) {
+  if (!empty($votes['content_type'])) {
     $votes = array($votes);
   }
   foreach ($votes as $key => $vote) {
@@ -236,7 +236,7 @@
  *   $vote_result['timestamp']   (Optional, defaults to time())
  */
 function votingapi_add_results($vote_results = array()) {
-  if (empty($vote_results['content_type'])) {
+  if (!empty($vote_results['content_type'])) {
     $vote_results = array($vote_results);
   }
 
