Index: contrib/feeds/audio_feeds.feeds.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/audio/contrib/feeds/audio_feeds.feeds.inc,v retrieving revision 1.2 diff -u -F^function -r1.2 audio_feeds.feeds.inc --- contrib/feeds/audio_feeds.feeds.inc 14 Sep 2009 04:40:57 -0000 1.2 +++ contrib/feeds/audio_feeds.feeds.inc 17 Oct 2009 01:20:17 -0000 @@ -183,7 +183,7 @@ function audio_feeds_children($node) { foreach ($node->{$field_name} as $item) { // Keep only those references that are actually accessible and // downloadable audio nodes. - if (($child = node_load($item['nid'])) && node_access('view', $child) && _audio_allow_download($child)) { + if (($child = node_load($item['nid'])) && node_access('view', $child) && _audio_allow_play($child)) { $children[] = $child; } }