AIRAVATA-2408 Fixing method name
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/d980e75a Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/d980e75a Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/d980e75a Branch: refs/heads/develop Commit: d980e75a185dbf69baec25f7e32f9baa999140d3 Parents: 135077c Author: Marcus Christie <[email protected]> Authored: Tue Jun 13 14:28:37 2017 -0400 Committer: Marcus Christie <[email protected]> Committed: Tue Jun 13 14:28:37 2017 -0400 ---------------------------------------------------------------------- app/libraries/UserProfileUtilities.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/d980e75a/app/libraries/UserProfileUtilities.php ---------------------------------------------------------------------- diff --git a/app/libraries/UserProfileUtilities.php b/app/libraries/UserProfileUtilities.php index 8d9c99d..31a586c 100644 --- a/app/libraries/UserProfileUtilities.php +++ b/app/libraries/UserProfileUtilities.php @@ -8,7 +8,7 @@ class UserProfileUtilities public static function does_user_profile_exist($userId) { $gatewayId = Session::get('gateway_id'); - return UserProfileService::doesUserProfileExist(Session::get('authz-token'), $userId, $gatewayId); + return UserProfileService::doesUserExist(Session::get('authz-token'), $userId, $gatewayId); } public static function create_basic_user_profile($username, $userEmail) {
