Repository: airavata-php-gateway Updated Branches: refs/heads/develop 9b2af829c -> 51f2d2fa9
fixing minor issue in not setting tenant id Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/51f2d2fa Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/51f2d2fa Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/51f2d2fa Branch: refs/heads/develop Commit: 51f2d2fa9d4e0d1f017b8808804941027f664c8e Parents: 9b2af82 Author: scnakandala <[email protected]> Authored: Wed Dec 14 12:56:20 2016 -0500 Committer: scnakandala <[email protected]> Committed: Wed Dec 14 12:56:20 2016 -0500 ---------------------------------------------------------------------- app/libraries/Wsis/Wsis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/51f2d2fa/app/libraries/Wsis/Wsis.php ---------------------------------------------------------------------- diff --git a/app/libraries/Wsis/Wsis.php b/app/libraries/Wsis/Wsis.php index 79afac7..74e4d3b 100755 --- a/app/libraries/Wsis/Wsis.php +++ b/app/libraries/Wsis/Wsis.php @@ -438,7 +438,7 @@ class Wsis { 'cache_wsdl' => WSDL_CACHE_BOTH ); $userProfileManager = new UserProfileManager($wsisConfig['service-url'], $parameters); - $userProfileManager->updateUserProfile($adminUsername, $email, $firstName, $lastName); + $userProfileManager->updateUserProfile($adminUsername . '@' . $tenantDomain, $email, $firstName, $lastName); return $tm; } catch (Exception $ex) { throw new Exception("Unable to create Tenant.", 0, $ex);
