Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ReCaptcha settings typo & fix issue #16

Merged
merged 3 commits into from
May 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ org.openidentityplatform.openam.authentication.modules.recaptcha.ReCaptcha.descr
org.openidentityplatform.openam.authentication.modules.recaptcha.ReCaptcha.authlevel=Auth Level
org.openidentityplatform.openam.authentication.modules.recaptcha.ReCaptcha.secret=Secret Key
org.openidentityplatform.openam.authentication.modules.recaptcha.ReCaptcha.key=Key
org.openidentityplatform.openam.authentication.modules.recaptcha.ReCaptcha.jsUrl=ReCapthca JavaScript URL
org.openidentityplatform.openam.authentication.modules.recaptcha.ReCaptcha.verifyUrl=ReCapthca Verify URL
org.openidentityplatform.openam.authentication.modules.recaptcha.ReCaptcha.jsUrl=ReCaptcha JavaScript URL
org.openidentityplatform.openam.authentication.modules.recaptcha.ReCaptcha.verifyUrl=ReCaptcha Verify URL

Original file line number Diff line number Diff line change
Expand Up @@ -717,9 +717,12 @@ public AMAuthenticationInstance createAuthenticationInstance(
//In case of server mode AMAuthLevelManager will update AMAuthenticationManager about the change, and
//there is no need to reinitialize the configuration twice. In client mode it is less likely that
//AMAuthLevelManager listeners are in place, so let's reinitialize to be on the safe side.
if (!SystemProperties.isServerMode()) {
buildModuleInstanceForService(realm, serviceName);
}

//TODO need to find out why AMAuthLevelManager does not update AMAuthenticationManager

//if (!SystemProperties.isServerMode()) {
buildModuleInstanceForService(realm, serviceName);
//}
return new AMAuthenticationInstance(name, type, subConfig, schema);
} catch (Exception e) {
throw new AMConfigurationException(e);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</cc>
</actions>
<column name="configNameColumnLabel"
sortname="tblDataName" rowheader="true">
sortname="configNameColumnData" rowheader="true">

<cc name="configActionColumnHREF"
tagclass="com.sun.web.ui.taglib.html.CCHrefTag">
Expand Down