Ticket #32480: 32480.2.diff
File 32480.2.diff, 564 bytes (added by , 6 years ago) |
---|
-
wp-includes/widgets.php
173 173 * @param array $control_options 174 174 */ 175 175 public function WP_Widget( $id_base, $name, $widget_options = array(), $control_options = array() ) { 176 _doing_it_wrong( 'WP_Widget', esc_html__( 'This is a PHP4 style constructor, please use __construct instead' ), '4.3' ); 176 177 WP_Widget::__construct( $id_base, $name, $widget_options, $control_options ); 177 178 } 178 179