Index: i18nviews/includes/content_negotiation_filter_handler.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18nviews/includes/Attic/content_negotiation_filter_handler.inc,v
retrieving revision 1.1.2.4
diff -u -p -r1.1.2.4 content_negotiation_filter_handler.inc
--- i18nviews/includes/content_negotiation_filter_handler.inc	29 Aug 2009 21:08:25 -0000	1.1.2.4
+++ i18nviews/includes/content_negotiation_filter_handler.inc	14 Sep 2009 12:15:54 -0000
@@ -2,9 +2,11 @@
 
 class content_negotiation_filter_handler extends views_handler_filter {
   function query() {
-    $table_alias = $this->query->ensure_table('node');
-    $where = i18n_db_rewrite_where($table_alias, 'node');
-    $this->query->add_where($this->options['group'], $where);
+    $this->ensure_my_table();
+    $where = i18n_db_rewrite_where($this->table_alias, 'node');
+    if (!empty($where)) {
+      $this->query->add_where($this->options['group'], $where);
+    }
   }
 
   function option_definition() {
