diff --git a/wp-admin/about.php b/wp-admin/about.php index 24427723f4..c7a7daac40 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -75,14 +75,22 @@ include( ABSPATH . 'wp-admin/admin-header.php' );

-
(is_ssl() ? 'https://' : 'http://s.' ) . 'wordpress.org/images/core/3.6/sample-video.mp4', - 'ogv' => (is_ssl() ? 'https://' : 'http://s.' ) . 'wordpress.org/images/core/3.6/sample-video.ogv', +
"$sample_video.mp4", + 'ogv' => "$sample_video.ogv", 'width' => 625, 'height' => 360, - ) - ); ?>
+ ); + // Opera 12 (Presto, pre-Chromium) fails to load ogv properly + // when combined with ME.js. Works fine in Opera 15. + // Don't serve ogv to Opera 12 to avoid complete brokeness. + if ( $GLOBALS['is_opera'] ) + unset( $args['ogv'] ); + // Our current ME.js API is limited to shortcodes in posts. + echo wp_video_shortcode( $args ); + ?>