Index: video.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/video/video.module,v retrieving revision 1.68 diff -b -U3 -r1.68 video.module --- video.module 18 Feb 2007 14:23:13 -0000 1.68 +++ video.module 27 Mar 2007 21:18:10 -0000 @@ -168,7 +168,7 @@ // Node links for a video if ($type == 'node' && $node->type == 'video' && $node->vidfile && user_access('access video')) { //If the video is of type youtube and multi-file downloads aren't turned on don't show the download link. - if ((_video_get_filetype($node->vidfile) == 'youtube' || _video_get_filetype($node->vidfile) == 'googlevideo') && $node->disable_multidownload == 1) { + if ((_video_get_filetype($node->vidfile) == 'youtube' || _video_get_filetype($node->vidfile) == 'googlevideo') && (!module_exists('video_multidownload') || $node->disable_multidownload == 1)) { $display_download_link = 0; } else {