Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.1/wp-includes/class-oembed.php

    r17995 r18019  
    2222
    2323    /**
    24      * Constructor
     24     * PHP4 constructor
     25     */
     26    function WP_oEmbed() {
     27        return $this->__construct();
     28    }
     29
     30    /**
     31     * PHP5 constructor
    2532     *
    2633     * @uses apply_filters() Filters a list of pre-defined oEmbed providers.
     
    3340            '#http://(www\.)?youtube.com/watch.*#i'         => array( 'http://www.youtube.com/oembed',            true  ),
    3441            'http://youtu.be/*'                             => array( 'http://www.youtube.com/oembed',            false ),
    35             'http://blip.tv/*'                              => array( 'http://blip.tv/oembed/',                   false ),
     42            'http://blip.tv/file/*'                         => array( 'http://blip.tv/oembed/',                   false ),
    3643            '#http://(www\.)?vimeo\.com/.*#i'               => array( 'http://www.vimeo.com/api/oembed.{format}', true  ),
    3744            '#http://(www\.)?dailymotion\.com/.*#i'         => array( 'http://www.dailymotion.com/api/oembed',    true  ),
Note: See TracChangeset for help on using the changeset viewer.