Merge pull request #154 from BuffaloDrew/BuffaloDrew-patch-1

Fix building incorrect data when using the default value arg separator
This commit is contained in:
Zach Borboa
2015-03-26 08:16:14 -07:00
+1 -1
View File
@@ -109,7 +109,7 @@ class Curl
$data = $json_str;
}
} else {
$data = http_build_query($data);
$data = http_build_query($data, '', '&');
}
}
}