diff --git a/wp-includes/version.php b/wp-includes/version.php index d1f9f9e1ac..610c9e16c6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31683'; +$wp_version = '4.2-alpha-31684'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index 40bf54c528..d1ad6baaa5 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -164,18 +164,6 @@ class WP_Widget { $this->control_options = wp_parse_args( $control_options, array('id_base' => $this->id_base) ); } - /** - * PHP4 constructor - * - * @param string $id_base - * @param string $name - * @param array $widget_options - * @param array $control_options - */ - public function WP_Widget( $id_base, $name, $widget_options = array(), $control_options = array() ) { - WP_Widget::__construct( $id_base, $name, $widget_options, $control_options ); - } - /** * Constructs name attributes for use in form() fields *