Changeset 22118 for trunk/wp-includes/widgets.php
- Timestamp:
- 10/04/2012 08:00:16 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/widgets.php
r19684 r22118 153 153 154 154 function _get_display_callback() { 155 return array( &$this, 'display_callback');155 return array($this, 'display_callback'); 156 156 } 157 157 158 158 function _get_update_callback() { 159 return array( &$this, 'update_callback');159 return array($this, 'update_callback'); 160 160 } 161 161 162 162 function _get_form_callback() { 163 return array( &$this, 'form_callback');163 return array($this, 'form_callback'); 164 164 } 165 165 … … 318 318 319 319 function WP_Widget_Factory() { 320 add_action( 'widgets_init', array( &$this, '_register_widgets' ), 100 );320 add_action( 'widgets_init', array( $this, '_register_widgets' ), 100 ); 321 321 } 322 322
Note: See TracChangeset
for help on using the changeset viewer.