--- commentrss.module.old 2006-01-06 08:36:41.000000000 +0200 +++ commentrss.module 2006-04-29 17:35:44.791977080 +0300 @@ -90,7 +90,7 @@ // No relevant nids found for this vocabulary if (!count($nids)) { return FALSE; } - $items = commentrss_format_items('nid IN (' . join(', ', $nids) . ')'); + $items = commentrss_format_items('n.nid IN (' . join(', ', $nids) . ')'); $vocab = taxonomy_get_vocabulary($vid); // We can link to a specific page if vocabulary listing is present @@ -124,7 +124,7 @@ // No relevant nids found for this term if (!count($nids)) { return FALSE; } - $items = commentrss_format_items('nid IN (' . join(', ', $nids) . ')'); + $items = commentrss_format_items('n.nid IN (' . join(', ', $nids) . ')'); $term = taxonomy_get_term($tid); $channel = array( @@ -183,7 +183,7 @@ // No relevant nids found for this node type if (!count($nids)) { return FALSE; } - $items = commentrss_format_items('nid IN (' . join(', ', $nids) . ')'); + $items = commentrss_format_items('n.nid IN (' . join(', ', $nids) . ')'); // TODO: this API has changed $typename = node_invoke($type, 'node_name');