Ticket #10337: 10337.11.patch

File 10337.11.patch, 2.4 KB (added by Viper007Bond, 4 years ago)

Whitelist WordPress.tv's new oEmbed provider

  • wp-includes/class-oembed.php

     
    3535        function __construct() { 
    3636                // List out some popular sites that support oEmbed. 
    3737                // The WP_Embed class disables discovery for non-unfiltered_html users, so only providers in this array will be used for them. 
    38                 // Add to this list using the wp_oembed_add_provider() function 
     38                // Add to this list using the wp_oembed_add_provider() function (see it's PHPDoc for details). 
    3939                $this->providers = apply_filters( 'oembed_providers', array( 
    4040                        '#http://(www\.)?youtube.com/watch.*#i' => array( 'http://www.youtube.com/oembed',            true  ), 
    4141                        'http://blip.tv/file/*'                 => array( 'http://blip.tv/oembed/',                   false ), 
    4242                        '#http://(www\.)?vimeo\.com/.*#i'       => array( 'http://www.vimeo.com/api/oembed.{format}', true  ), 
    43                         '#http://(www\.)?flickr.com/.*#i'       => array( 'http://www.flickr.com/services/oembed/',   true ), 
    44                         '#http://(www\.)?hulu.com/watch/.*#i'   => array( 'http://www.hulu.com/api/oembed.{format}',  true ), 
    45                         '#http://(www\.)?viddler.com/.*#i'      => array( 'http://lab.viddler.com/services/oembed/',  true ), 
     43                        '#http://(www\.)?flickr.com/.*#i'       => array( 'http://www.flickr.com/services/oembed/',   true  ), 
     44                        '#http://(www\.)?hulu.com/watch/.*#i'   => array( 'http://www.hulu.com/api/oembed.{format}',  true  ), 
     45                        '#http://(www\.)?viddler.com/.*#i'      => array( 'http://lab.viddler.com/services/oembed/',  true  ), 
    4646                        'http://qik.com/*'                      => array( 'http://qik.com/api/oembed.{format}',       false ), 
    4747                        'http://revision3.com/*'                => array( 'http://revision3.com/api/oembed/',         false ), 
    4848                        'http://i*.photobucket.com/albums/*'    => array( 'http://photobucket.com/oembed',            false ), 
    4949                        'http://gi*.photobucket.com/groups/*'   => array( 'http://photobucket.com/oembed',            false ), 
    50                         '#http://(www\.)?scribd.com/.*#i'       => array( 'http://www.scribd.com/services/oembed',    true ), 
     50                        '#http://(www\.)?scribd.com/.*#i'       => array( 'http://www.scribd.com/services/oembed',    true  ), 
     51                        'http://wordpress.tv/*'                 => array( 'http://wordpress.tv/oembed/',              false ), 
    5152                ) ); 
    5253 
    5354                // Fix Scribd embeds. They contain new lines in the middle of the HTML which breaks wpautop().