From b12c1a8ad2f7ccff5167da2fde1a950f68514173 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Mon, 8 Aug 2016 16:01:39 +0000 Subject: [PATCH] About Page: Use a better version of the mp4 video. The previous version had the wrong colors. Also remove ogv from the list, it has the wrong colors too and all current browsers support either the mp4 or webm format. See #37246. git-svn-id: https://develop.svn.wordpress.org/trunk@38215 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/about.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wp-admin/about.php b/src/wp-admin/about.php index 24a25dd48b..fa9737bf1c 100644 --- a/src/wp-admin/about.php +++ b/src/wp-admin/about.php @@ -74,8 +74,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); if ( ! wp_is_mobile() ) { add_filter( 'wp_video_shortcode', '_wp_override_admin_video_width_limit' ); echo wp_video_shortcode( array( - 'mp4' => 'https://cldup.com/NlOEbKLT_6.mp4', - 'ogv' => 'https://cldup.com/0XzDZMlYwb.ogv', + 'mp4' => 'https://cldup.com/i-avTa8Hi1.mp4', 'webm' => 'https://cldup.com/ngOx9w9VlE.webm', 'poster' => 'https://cldup.com/c0kfjoVcFo.png', 'loop' => true,