Merge pull request #1328 from girirajsharma/master

Minor fix: resolved a scope variable in services.js and a typo.
This commit is contained in:
Stian Thorgersen 2015-06-04 11:52:17 +01:00
commit 7467fbaa12
2 changed files with 2 additions and 2 deletions

View file

@ -559,7 +559,7 @@ function roleControl($scope, realm, role, roles, clients,
$scope.realmMappings.push(role);
}
}
$scope.selectRealmRoles = [];
$scope.selectedRealmRoles = [];
});
};

View file

@ -69,7 +69,7 @@ public class LinkedInIdentityProvider extends AbstractOAuth2IdentityProvider imp
return user;
} catch (Exception e) {
throw new IdentityBrokerException("Could not obtain user profile from github.", e);
throw new IdentityBrokerException("Could not obtain user profile from linkedIn.", e);
}
}