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