Ticket #33440: 33440.2.diff
File 33440.2.diff, 587 bytes (added by , 9 years ago) |
---|
-
src/wp-includes/class-wp-widget.php
159 159 * @param array $control_options 160 160 */ 161 161 public function WP_Widget( $id_base, $name, $widget_options = array(), $control_options = array() ) { 162 _deprecated_constructor( 'WP_Widget', '4.3.0' );162 _deprecated_constructor( get_class( $this ), '4.3.0' ); 163 163 WP_Widget::__construct( $id_base, $name, $widget_options, $control_options ); 164 164 } 165 165