closes #34
This commit is contained in:
@@ -234,7 +234,7 @@ class Unirest
|
||||
$pairs = explode("&", $querystring);
|
||||
$vars = array();
|
||||
foreach ($pairs as $pair) {
|
||||
$nv = explode("=", $pair);
|
||||
$nv = explode("=", $pair, 2);
|
||||
$name = $nv[0];
|
||||
$value = $nv[1];
|
||||
$vars[$name] = $value;
|
||||
|
||||
Reference in New Issue
Block a user