From b27d9015e18d1514bdb6bdfdaac74adf1b3b2391 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Thu, 24 Sep 2015 22:03:25 +0000 Subject: [PATCH] Update the oEmbed endpoint URL for Photobucket. Fixes #33783 Built from https://develop.svn.wordpress.org/trunk@34526 git-svn-id: http://core.svn.wordpress.org/trunk@34490 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-oembed.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-oembed.php b/wp-includes/class-oembed.php index 048c13b0f9..0d6d25de84 100644 --- a/wp-includes/class-oembed.php +++ b/wp-includes/class-oembed.php @@ -47,8 +47,8 @@ class WP_oEmbed { '#https?://flic\.kr/.*#i' => array( 'https://www.flickr.com/services/oembed/', true ), '#https?://(.+\.)?smugmug\.com/.*#i' => array( 'http://api.smugmug.com/services/oembed/', true ), '#https?://(www\.)?hulu\.com/watch/.*#i' => array( 'http://www.hulu.com/api/oembed.{format}', true ), - 'http://i*.photobucket.com/albums/*' => array( 'http://photobucket.com/oembed', false ), - 'http://gi*.photobucket.com/groups/*' => array( 'http://photobucket.com/oembed', false ), + 'http://i*.photobucket.com/albums/*' => array( 'http://api.photobucket.com/oembed', false ), + 'http://gi*.photobucket.com/groups/*' => array( 'http://api.photobucket.com/oembed', false ), '#https?://(www\.)?scribd\.com/doc/.*#i' => array( 'http://www.scribd.com/services/oembed', true ), '#https?://wordpress.tv/.*#i' => array( 'http://wordpress.tv/oembed/', true ), '#https?://(.+\.)?polldaddy\.com/.*#i' => array( 'https://polldaddy.com/oembed/', true ), diff --git a/wp-includes/version.php b/wp-includes/version.php index fa4b0e6c59..295786b24b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34525'; +$wp_version = '4.4-alpha-34526'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.