Completed
Push — develop ( 5e223c...186db0 )
by Aristeides
02:51
created
modules/css/field/class-kirki-output-field-dimensions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@
 block discarded – undo
45 45
 				if ( false !== strpos( $output['property'], '%%' ) ) {
46 46
 					$property = str_replace( '%%', $key, $output['property'] );
47 47
 				}
48
-				$this->styles[ $output['media_query'] ][ $output['element'] ][ $property ] = $output['prefix'] . $this->process_property_value( $property, $value[ $key ] ) . $output['suffix'];
48
+				$this->styles[$output['media_query']][$output['element']][$property] = $output['prefix'] . $this->process_property_value( $property, $value[$key] ) . $output['suffix'];
49 49
 			}
50 50
 		} elseif ( isset( $output['choice'] ) ) {
51 51
 			if ( false !== strpos( $output['property'], '%%' ) ) {
52 52
 				$output['property'] = str_replace( '%%', $key, $output['property'] );
53 53
 			}
54
-			$this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] = $output['prefix'] . $this->process_property_value( $output['property'], $value ) . $output['suffix'];
54
+			$this->styles[$output['media_query']][$output['element']][$output['property']] = $output['prefix'] . $this->process_property_value( $output['property'], $value ) . $output['suffix'];
55 55
 		}
56 56
 	}
57 57
 }
Please login to merge, or discard this patch.