diff options
author | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2006-10-20 07:57:13 +0000 |
---|---|---|
committer | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2006-10-20 07:57:13 +0000 |
commit | f38e8811468237566b7fe904a919875cb2dffaba (patch) | |
tree | ae96cc48624e25aa45ffdf22dfc61b0060db1fe9 | |
parent | fb7919a6359542d195c4abd959d4c293b087dd79 (diff) | |
download | video-f38e8811468237566b7fe904a919875cb2dffaba.tar.gz video-f38e8811468237566b7fe904a919875cb2dffaba.tar.bz2 |
Patch #87900 by agilpwc (http://drupal.org/user/49395):
The call to set the src url of realmedia files was left out of the real play funtion.
Real media files didn't work. This should fix it.
-rw-r--r-- | video.module | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/video.module b/video.module index 5e3e0aa..c3c998c 100644 --- a/video.module +++ b/video.module @@ -1012,7 +1012,9 @@ function theme_video_play_realmedia($node) { // Real's embeded player includes the controls // in the height $node->videoy += 40; - + + $url = _video_get_fileurl($node->vidfile); + // this will be executed by not Internet Explorer browsers $output = '<!--[if !IE]> <--> <object type="audio/x-pn-realaudio-plugin" width="'. $node->videox .'" height="'. $node->videoy .'" |