Index: i18noverview.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18noverview/Attic/i18noverview.module,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 i18noverview.module
--- i18noverview.module	28 Apr 2008 09:45:46 -0000	1.1.2.1
+++ i18noverview.module	1 May 2008 23:32:24 -0000
@@ -158,7 +158,7 @@ function i18noverview_language_page($lan
     WHEN nt.tnid IS NULL THEN '2 MISS'
     WHEN n.nid = n.tnid THEN '1 OLD'
     ELSE 'unknown' END AS translation_status, 0 AS i18n
-    FROM node n LEFT JOIN node nt ON n.nid = nt.tnid AND nt.language = '%s' 
+    FROM {node} n LEFT JOIN {node} nt ON n.nid = nt.tnid AND nt.language = '%s' 
     WHERE n.type IN (" . db_placeholders($types, 'varchar') . ") AND ((n.nid = n.tnid OR n.tnid = 0) AND (n.language != '')) ";
   $args = array_merge(array($language, $language), $types);
   
@@ -261,4 +261,4 @@ function theme_i18noverview_translation_
     return l($text, $path, $options);
   }
   return $text;
-}
\ No newline at end of file
+}

