Completed
Pull Request — master (#102)
by
unknown
14s
created
src/ApiSemanticFormsSelectRequestProcessor.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -109,8 +109,9 @@
 block discarded – undo
109 109
 			$rawparams = array_filter($rawparams, function($param) use ($name) {
110 110
 				return substr_compare( $param, "$name=", 0, strlen( "$name=" ) ) !== 0;
111 111
 			});
112
-			if ($value !== null)
113
-				$rawparams[] = "$name=$value";
112
+			if ($value !== null) {
113
+							$rawparams[] = "$name=$value";
114
+			}
114 115
 		};
115 116
 
116 117
 		$rawparams = explode( ";", $querystr );
Please login to merge, or discard this patch.