Changeset 27816 for trunk/src/wp-includes/class-wp-customize-manager.php
- Timestamp:
- 03/28/2014 02:06:10 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r27433 r27816 38 38 protected $previewing = false; 39 39 40 /** 41 * Methods and properties deailing with managing widgets in the customizer. 42 * 43 * @var WP_Customize_Widgets 44 */ 45 public $widgets; 46 40 47 protected $settings = array(); 41 48 protected $sections = array(); … … 64 71 require( ABSPATH . WPINC . '/class-wp-customize-widgets.php' ); 65 72 66 WP_Customize_Widgets::setup(); // This should be integrated.73 $this->widgets = new WP_Customize_Widgets( $this ); 67 74 68 75 add_filter( 'wp_die_handler', array( $this, 'wp_die_handler' ) );
Note: See TracChangeset
for help on using the changeset viewer.