[java-identity-provider] branch main updated: IDP-2193 - Make InformationURL and PrivacyStatementURL open in new tabs
Scott Cantor
cantor.2 at osu.edu
Thu Nov 16 18:50:33 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=4b2d9fe22cbf394f1ff0a0b1b5ea800fc34f390a
The following commit(s) were added to refs/heads/main by this push:
new 4b2d9fe22 IDP-2193 - Make InformationURL and PrivacyStatementURL open in new tabs
4b2d9fe22 is described below
commit 4b2d9fe22cbf394f1ff0a0b1b5ea800fc34f390a
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Nov 16 13:50:30 2023 -0500
IDP-2193 - Make InformationURL and PrivacyStatementURL open in new tabs
https://shibboleth.atlassian.net/browse/IDP-2193
---
.../net/shibboleth/idp/module/views/intercept/attribute-release.vm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/views/intercept/attribute-release.vm b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/views/intercept/attribute-release.vm
index 3e9e547fa..afffbc210 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/views/intercept/attribute-release.vm
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/views/intercept/attribute-release.vm
@@ -66,13 +66,13 @@ $response.addHeader("Content-Security-Policy", "script-src 'none'")
<ul>
#if ($informationURL)
<li>
- <a href="$informationURL">#springMessageText("idp.attribute-release.informationURLLabel", "Additional information about the service")</a>
+ <a href="$informationURL" target="_blank">#springMessageText("idp.attribute-release.informationURLLabel", "Additional information about the service")</a>
</li>
#end
#if ($privacyStatementURL)
<li>
- <a href="$privacyStatementURL">#springMessageText("idp.attribute-release.privacyStatementURLLabel", "Data privacy information of the service")</a>
+ <a href="$privacyStatementURL" target="_blank">#springMessageText("idp.attribute-release.privacyStatementURLLabel", "Data privacy information of the service")</a>
</li>
#end
</ul>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list