diff --git a/wp-includes/class-oembed.php b/wp-includes/class-oembed.php index 18c249031b..a13cc87862 100644 --- a/wp-includes/class-oembed.php +++ b/wp-includes/class-oembed.php @@ -40,7 +40,6 @@ class WP_oEmbed { '#https://((m|www)\.)?youtube\.com/playlist.*#i' => array( 'http://www.youtube.com/oembed?scheme=https', true ), '#http://youtu\.be/.*#i' => array( 'http://www.youtube.com/oembed', true ), '#https://youtu\.be/.*#i' => array( 'http://www.youtube.com/oembed?scheme=https', true ), - 'http://blip.tv/*' => array( 'http://blip.tv/oembed/', false ), '#https?://(.+\.)?vimeo\.com/.*#i' => array( 'http://vimeo.com/api/oembed.{format}', true ), '#https?://(www\.)?dailymotion\.com/.*#i' => array( 'http://www.dailymotion.com/services/oembed', true ), 'http://dai.ly/*' => array( 'http://www.dailymotion.com/services/oembed', false ), @@ -101,7 +100,6 @@ class WP_oEmbed { * | ------------ | -------------------- | ----- | --------- | * | Provider | Flavor | SSL | Since | * | ------------ | -------------------- | ----- | --------- | - * | Blip | blip.tv | ! | 2.9.0 | * | Dailymotion | dailymotion.com | Yes | 2.9.0 | * | Flickr | flickr.com | Yes | 2.9.0 | * | Hulu | hulu.com | Yes | 2.9.0 | @@ -160,6 +158,8 @@ class WP_oEmbed { * | ------------ | -------------------- | ----- | --------- | --------- | * | Revision3 | revision3.com | ! | 2.9.0 | 4.2.0 | * | ------------ | -------------------- | ----- | --------- | --------- | + * | Blip | blip.tv | ! | 2.9.0 | 4.4.0 | + * | ------------ | -------------------- | ----- | --------- | --------- | * * @see wp_oembed_add_provider() * diff --git a/wp-includes/version.php b/wp-includes/version.php index 530be54f7f..cff345f2df 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33718'; +$wp_version = '4.4-alpha-33719'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.