diff --git a/wp-admin/options-discussion.php b/wp-admin/options-discussion.php
index 3d59195fd4..27248eaa58 100644
--- a/wp-admin/options-discussion.php
+++ b/wp-admin/options-discussion.php
@@ -240,7 +240,6 @@ $avatar_defaults = array(
*/
$avatar_defaults = apply_filters( 'avatar_defaults', $avatar_defaults );
$default = get_option( 'avatar_default', 'mystery' );
-$size = 32;
$avatar_list = '';
// Force avatars on to display these choices
@@ -249,12 +248,7 @@ add_filter( 'pre_option_show_avatars', '__return_true', 100 );
foreach ( $avatar_defaults as $default_key => $default_name ) {
$selected = ($default == $default_key) ? 'checked="checked" ' : '';
$avatar_list .= "\n\t';
$avatar_list .= '
';
}
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 26ef866502..65e86e352d 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.6-alpha-37226';
+$wp_version = '4.6-alpha-37227';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.