From 61fb72e3c517583d89dd5697185e739a53c0e54d Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Tue, 28 Oct 2014 16:39:14 +0000 Subject: [PATCH] Twenty Fifteen: minor code style for variable within array notation. See #30133. git-svn-id: https://develop.svn.wordpress.org/trunk@30048 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyfifteen/inc/customizer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentyfifteen/inc/customizer.php b/src/wp-content/themes/twentyfifteen/inc/customizer.php index 3e48551895..89b3b40daa 100644 --- a/src/wp-content/themes/twentyfifteen/inc/customizer.php +++ b/src/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'];