You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lancegosby[CodePlex] My web application allows users to authenticate with FBA as well as ADFS. When logged in with an FBA user, I see the quotChange Passwordquot menu item in the Personal Actions menu as expected. When logged in as an ADFS user, I still see quotChange
Passwordquot but didn't expect to.
In ChangePasswordMenuItem.cs, it checks for the type of issuer and only returns early if the type is quotWindowsquot. Perhaps it would be better to return if the type is NOT quotFormsquot.
The text was updated successfully, but these errors were encountered:
lancegosby[CodePlex] I've made the following change to ChangePasswordMenuItem.cs in my environment and it seems to work now as expected with Forms, ADFS (TrustedProvider) and Windows.
Line 25 of ChangePasswordMenuItem.cs:
Old:
if (SPOriginalIssuers.GetIssuerType(sPClaim.OriginalIssuer) == SPOriginalIssuerType.Windows)
New:
if (SPOriginalIssuers.GetIssuerType(sPClaim.OriginalIssuer) != SPOriginalIssuerType.Forms)
Sorry I'm not sure how to submit a Pull Request on CodePlex.
lancegosby[CodePlex]
My web application allows users to authenticate with FBA as well as ADFS. When logged in with an FBA user, I see the quotChange Passwordquot menu item in the Personal Actions menu as expected. When logged in as an ADFS user, I still see quotChange
Passwordquot but didn't expect to.
In ChangePasswordMenuItem.cs, it checks for the type of issuer and only returns early if the type is quotWindowsquot. Perhaps it would be better to return if the type is NOT quotFormsquot.
The text was updated successfully, but these errors were encountered: