From ad6346e33d88490b41e39c9acdf8e76cf6913aa0 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 28 Oct 2009 20:13:09 +0000 Subject: [PATCH] Fix revision3 scheme. Add photobucket oembed. see #10337 git-svn-id: https://develop.svn.wordpress.org/trunk@12123 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/class-oembed.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-oembed.php b/wp-includes/class-oembed.php index 6f31ba4c19..d7906baae9 100644 --- a/wp-includes/class-oembed.php +++ b/wp-includes/class-oembed.php @@ -44,7 +44,9 @@ class WP_oEmbed { 'http://www.hulu.com/watch/*' => array( 'http://www.hulu.com/api/oembed.{format}', false ), 'http://*.viddler.com/*' => array( 'http://lab.viddler.com/services/oembed/', false ), 'http://qik.com/*' => array( 'http://qik.com/api/oembed.{format}', false ), - 'http://*.revision3.com/*' => array( 'http://revision3.com/api/oembed/', false ), + 'http://revision3.com/*' => array( 'http://revision3.com/api/oembed/', false ), + 'http://i*.photobucket.com/albums/*' => array( 'http://photobucket.com/oembed', false ), + 'http://gi*.photobucket.com/groups/*' => array( 'http://photobucket.com/oembed', false ), ) ); }