Changeset 32650 for trunk/src/wp-includes/class-oembed.php
- Timestamp:
- 05/29/2015 03:42:40 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-oembed.php
r32533 r32650 20 20 class WP_oEmbed { 21 21 public $providers = array(); 22 /** 23 * @static 24 * @var array 25 */ 22 26 public static $early_providers = array(); 23 27 … … 612 616 * @access private 613 617 * 614 * @s ee WP_oEmbed618 * @staticvar WP_oEmbed $wp_oembed 615 619 * 616 620 * @return WP_oEmbed object. 617 621 */ 618 622 function _wp_oembed_get_object() { 619 static $wp_oembed ;620 621 if ( is_null( $wp_oembed) )623 static $wp_oembed = null; 624 625 if ( is_null( $wp_oembed ) ) { 622 626 $wp_oembed = new WP_oEmbed(); 623 627 } 624 628 return $wp_oembed; 625 629 }
Note: See TracChangeset
for help on using the changeset viewer.