diff --git a/wp-content/themes/twentyfifteen/inc/customizer.php b/wp-content/themes/twentyfifteen/inc/customizer.php index 3e48551895..89b3b40daa 100644 --- a/wp-content/themes/twentyfifteen/inc/customizer.php +++ b/wp-content/themes/twentyfifteen/inc/customizer.php @@ -159,7 +159,7 @@ function twentyfifteen_get_color_scheme() { $color_schemes = twentyfifteen_get_color_schemes(); if ( array_key_exists( $color_scheme_option, $color_schemes ) ) { - return $color_schemes[$color_scheme_option]['colors']; + return $color_schemes[ $color_scheme_option ]['colors']; } return $color_schemes['default']['colors']; diff --git a/wp-includes/version.php b/wp-includes/version.php index 3afba9b0bb..7cdc833169 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30047'; +$wp_version = '4.1-alpha-30048'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.