Skip to content

Commit 5ca496b

Browse files
Clean calls to http_build_query()
1 parent 2855b6b commit 5ca496b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ public function getUri()
209209
parse_str($query, $currentParameters);
210210
}
211211

212-
$queryString = http_build_query(array_merge($currentParameters, $this->getValues()), null, '&');
212+
$queryString = http_build_query(array_merge($currentParameters, $this->getValues()), '', '&');
213213

214214
$pos = strpos($uri, '?');
215215
$base = false === $pos ? $uri : substr($uri, 0, $pos);

0 commit comments

Comments
 (0)