Index: video.module =================================================================== --- video.module (revision 7667) +++ video.module (working copy) @@ -975,7 +975,9 @@ return theme('video_play_googlevideo', $node); default: drupal_set_message('Video type not supported', 'error'); - drupal_goto("node/$node->nid"); + if (!variable_get('video_playinbody', 0)) { + drupal_goto("node/$node->nid"); + } break; } }