Fix some more instances in the groups service connector where we weren't returning the response

This commit is contained in:
Justin Clark-Casey
2014-07-31 20:52:24 +01:00
parent d670540920
commit b754ed3357
@@ -138,7 +138,7 @@ function AddGroup(
'METHOD' => 'PUTGROUP',
'OP' => 'ADD');
$responseXml = PostToService($serviceUri, http_build_query($params), $debug);
return PostToService($serviceUri, http_build_query($params), $debug);
}
function AddUserToGroup($serviceUri, $groupId, $userId, $roleId, $debug = FALSE)
@@ -233,7 +233,7 @@ function UpdateGroup(
'METHOD' => 'PUTGROUP',
'OP' => 'UPDATE');
$responseXml = PostToService($serviceUri, http_build_query($params), $debug);
return PostToService($serviceUri, http_build_query($params), $debug);
}
?>