diff --git a/wp-includes/version.php b/wp-includes/version.php index 43dee7d573..f54cb33abb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33844'; +$wp_version = '4.4-alpha-33845'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/widgets/class-wp-widget-recent-posts.php b/wp-includes/widgets/class-wp-widget-recent-posts.php index a81474fb0c..0d4606ea16 100644 --- a/wp-includes/widgets/class-wp-widget-recent-posts.php +++ b/wp-includes/widgets/class-wp-widget-recent-posts.php @@ -107,7 +107,7 @@ class WP_Widget_Recent_Posts extends WP_Widget { */ public function update( $new_instance, $old_instance ) { $instance = $old_instance; - $instance['title'] = santize_text_field( $new_instance['title'] ); + $instance['title'] = sanitize_text_field( $new_instance['title'] ); $instance['number'] = (int) $new_instance['number']; $instance['show_date'] = isset( $new_instance['show_date'] ) ? (bool) $new_instance['show_date'] : false; $this->flush_widget_cache();