Completed
Push — develop ( adf00f...6b26b4 )
by Aristeides
02:25
created
controls/dimensions/class-kirki-control-dimensions.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -93,14 +93,14 @@  discard block
 block discarded – undo
93 93
 		if ( is_array( $this->choices ) ) {
94 94
 			foreach ( $this->choices as $choice => $value ) {
95 95
 				if ( 'labels' !== $choice && true === $value ) {
96
-					$this->json['choices'][ $choice ] = true;
96
+					$this->json['choices'][$choice] = true;
97 97
 				}
98 98
 			}
99 99
 		}
100 100
 		if ( is_array( $this->json['default'] ) ) {
101 101
 			foreach ( $this->json['default'] as $key => $value ) {
102
-				if ( isset( $this->json['choices'][ $key ] ) && ! isset( $this->json['value'][ $key ] ) ) {
103
-					$this->json['value'][ $key ] = $value;
102
+				if ( isset( $this->json['choices'][$key] ) && ! isset( $this->json['value'][$key] ) ) {
103
+					$this->json['value'][$key] = $value;
104 104
 				}
105 105
 			}
106 106
 		}
@@ -208,6 +208,6 @@  discard block
 block discarded – undo
208 208
 		if ( false === $id ) {
209 209
 			return $translation_strings;
210 210
 		}
211
-		return $translation_strings[ $id ];
211
+		return $translation_strings[$id];
212 212
 	}
213 213
 }
Please login to merge, or discard this patch.