We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec0f103 commit b84a7e7Copy full SHA for b84a7e7
quickbase.php
@@ -180,7 +180,11 @@ final public function constructPayload(){
180
$this->payload = $xmlDoc->asXML();
181
}else{
182
foreach($this->options as $key => $value){
183
- $this->payload .= '&'.$key.'='.urlencode($value);
+ if($key === 'field'){
184
+ $this->payload .= '&_fid_'.$value['fid'].'='.urlencode($value['value']);
185
+ }else{
186
+ $this->payload .= '&'.$key.'='.urlencode($value);
187
+ }
188
}
189
190
0 commit comments