You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2017/06/13 18:28:42 UTC

airavata-php-gateway git commit: AIRAVATA-2408 Fixing method name

Repository: airavata-php-gateway
Updated Branches:
  refs/heads/keycloak-integration 135077cd6 -> d980e75a1


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/keycloak-integration
Commit: d980e75a185dbf69baec25f7e32f9baa999140d3
Parents: 135077c
Author: Marcus Christie <ma...@iu.edu>
Authored: Tue Jun 13 14:28:37 2017 -0400
Committer: Marcus Christie <ma...@iu.edu>
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) {