From 872e7cc3ebc52a04648edef110bfd247951dea4f Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 2 Nov 2009 20:50:49 +0000 Subject: [PATCH] Fix regex. Props Viper007Bond. see #10337 git-svn-id: http://svn.automattic.com/wordpress/trunk@12138 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-oembed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/class-oembed.php b/wp-includes/class-oembed.php index d5fcade5e..0943de4d1 100644 --- a/wp-includes/class-oembed.php +++ b/wp-includes/class-oembed.php @@ -40,7 +40,7 @@ class WP_oEmbed { '#http://(www\.)?youtube.com/watch.*#i' => array( 'http://www.youtube.com/oembed', true ), 'http://blip.tv/file/*' => array( 'http://blip.tv/oembed/', false ), '#http://(www\.)?vimeo\.com/.*#i' => array( 'http://www.vimeo.com/api/oembed.{format}', true ), - '#http://(www\.)?flickr.com/.*' => array( 'http://www.flickr.com/services/oembed/', true ), + '#http://(www\.)?flickr.com/.*#i' => array( 'http://www.flickr.com/services/oembed/', true ), '#http://(www\.)?hulu.com/watch/.*#i' => array( 'http://www.hulu.com/api/oembed.{format}', true ), '#http://(www\.)?viddler.com/.*#i' => array( 'http://lab.viddler.com/services/oembed/', true ), 'http://qik.com/*' => array( 'http://qik.com/api/oembed.{format}', false ),