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 f0609eb commit 7a4d44fCopy full SHA for 7a4d44f
setup/sdk/proxy.tpl
@@ -91,7 +91,9 @@
91
// dearray values
92
$data = array();
93
foreach($spidsdk->getAttributes() as $attribute=>$value) {
94
- $data[$attribute] = $value[0];
+ $response_attributes_prefix = $proxy_config['clients'][$client_id]['response_attributes_prefix'];
95
+ $response_attributes_prefix = $response_attributes_prefix? $response_attributes_prefix : '';
96
+ $data[$response_attributes_prefix.$attribute] = $value[0];
97
}
98
99
$client_config = $proxy_config['clients'][$client_id];
0 commit comments