Changeset 1147

Show
Ignore:
Timestamp:
06/13/07 10:17:31 (1 year ago)
Author:
ben
Message:

Embedded videos play in IE.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/mod/contenttoolbar/lib.php

    r1081 r1147  
    9191    preg_match($urlpattern,$video_url,$url); 
    9292    $video_url=substr($url[0],0,-1); 
    93     $body = run("video:text:process","{{video:$video_url?".$video_width."x".$video_height."}}"); 
     93    $body = run("video:text:process","{{video:$video_url}}"); 
    9494  } 
    9595  return array('title'=>"",'content'=>$body); 
  • devel/mod/contenttoolbar/lib/contenttoolbar_text_processing.php

    r1081 r1147  
    2424                  \$height = \$size[3]; 
    2525                } 
    26                 return "<embed class=\"VideoPlayback\" type=\"application/x-shockwave-flash\" src=\"\$url\" width=\"\$width\" height=\"\$height\"/>"; 
     26                 
     27                return "<object width=\"\$width\" height=\"\$height\"><param name=\"movie\" value=\"\$url\"></param><param name=\"wmode\" value=\"transparent\"></param><embed class=\"VideoPlayback\" type=\"application/x-shockwave-flash\" src=\"\$url\" width=\"\$width\" height=\"\$height\"/></object>"; 
    2728                 
    2829END;