Index: video.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/video/video.module,v
retrieving revision 1.47
diff -u -r1.47 video.module
--- video.module	16 Jul 2006 09:26:00 -0000	1.47
+++ video.module	2 Aug 2006 23:30:32 -0000
@@ -96,13 +96,18 @@
     if (arg(0) == 'node' && is_numeric(arg(1))) {
       if ($node = node_load(arg(1)) and $node->type == 'video') {
         if (variable_get('video_displayplaymenutab', 1) == 1) {
-          $items[] = array('path' => 'node/'. arg(1) .'/play',
-            'title' => t('play'),
-            'callback' => 'video_play',
-            'access' => user_access('play video'),
-            'weight' => 3,
-            'type' => MENU_LOCAL_TASK);
+          $menu_type = 'MENU_LOCAL_TASK';
+        } 
+        else {
+          $menu_type = 'MENU_CALLBACK';	     	
         }
+        $items[] = array('path' => 'node/'. arg(1) .'/play',
+          'title' => t('play'),
+          'callback' => 'video_play',
+          'access' => user_access('play video'),
+          'weight' => 3,
+          'type' => $menu_type);
+
         //If the video is of type youtube and multi-file downloads aren't turned on don't show the download tab.
         if (variable_get('video_displaydownloadmenutab', 1) == 1 and (_video_get_filetype($node->vidfile) != 'youtube' and _video_get_filetype($node->vidfile) != 'googlevideo')) {
           $items[] = array('path' => 'node/'.arg(1).'/download',
