Changes from trunk/wp-includes/class-oembed.php at r17995 to branches/3.1/wp-includes/class-oembed.php at r18019
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/wp-includes/class-oembed.php
r17995 r18019 22 22 23 23 /** 24 * Constructor 24 * PHP4 constructor 25 */ 26 function WP_oEmbed() { 27 return $this->__construct(); 28 } 29 30 /** 31 * PHP5 constructor 25 32 * 26 33 * @uses apply_filters() Filters a list of pre-defined oEmbed providers. … … 33 40 '#http://(www\.)?youtube.com/watch.*#i' => array( 'http://www.youtube.com/oembed', true ), 34 41 '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 ), 36 43 '#http://(www\.)?vimeo\.com/.*#i' => array( 'http://www.vimeo.com/api/oembed.{format}', true ), 37 44 '#http://(www\.)?dailymotion\.com/.*#i' => array( 'http://www.dailymotion.com/api/oembed', true ),
Note: See TracChangeset
for help on using the changeset viewer.