Test Setup Failed
Push — develop ( 5ff539...8b2bca )
by Aristeides
03:52 queued 01:45
created
modules/css/class-kirki-output.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -217,7 +217,8 @@
 block discarded – undo
217 217
 						}
218 218
 						// If 'choice' is defined check for sub-values too.
219 219
 						// Fixes https://github.com/aristath/kirki/issues/1416.
220
-						if ( isset( $output['choice'] ) && isset( $value[ $output['choice'] ] ) && $exclude == $value[ $output['choice'] ] ) { // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
220
+						if ( isset( $output['choice'] ) && isset( $value[ $output['choice'] ] ) && $exclude == $value[ $output['choice'] ] ) {
221
+// phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
221 222
 							$skip = true;
222 223
 						}
223 224
 					}
Please login to merge, or discard this patch.
core/class-kirki-helper.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -385,7 +385,8 @@
 block discarded – undo
385 385
 			$return = true;
386 386
 		} elseif ( '!==' === $operator && $value1 !== $value2 ) {
387 387
 			$return = true;
388
-		} elseif ( ( '!=' === $operator || 'not equal' === $operator ) && $value1 != $value2 ) { // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
388
+		} elseif ( ( '!=' === $operator || 'not equal' === $operator ) && $value1 != $value2 ) {
389
+// phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
389 390
 			$return = true;
390 391
 		} elseif ( ( '>=' === $operator || 'greater or equal' === $operator || 'equal or greater' === $operator ) && $value2 >= $value1 ) {
391 392
 			$return = true;
Please login to merge, or discard this patch.