Index: pollfield.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/pollfield/Attic/pollfield.module,v
retrieving revision 1.2.4.11.2.68
diff -u -p -r1.2.4.11.2.68 pollfield.module
--- pollfield.module	26 Jun 2010 14:05:06 -0000	1.2.4.11.2.68
+++ pollfield.module	15 Sep 2010 09:38:53 -0000
@@ -152,6 +152,8 @@ function theme_pollfield_formatter_defau
   $is_results_allow=$poll_features['ResultsAllow'];
 	//*********    aggragate translation votes ****************
 	$tnid=db_result(db_query("SELECT tnid FROM {node} WHERE nid = %d",$node->nid));
+	// $tnid is 0 for untranslated nodes. We don't want to aggregate all those.
+	if ($tnid) {
 	$t_nodes_results=db_query("SELECT nid FROM {node} WHERE tnid = %d",$tnid);
  
   while ($t_nodes = db_fetch_object($t_nodes_results)) {
@@ -185,6 +187,7 @@ function theme_pollfield_formatter_defau
 		}		
 
 	}
+	}
 	
 	
 	//************* end of aggregate translated votes ********************
