[java-opensaml] branch main updated: Fix a template parameter check.
Scott Cantor
cantor.2 at osu.edu
Tue Jul 18 16:02:24 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=6082f6ff49936c8df2263f2bc40c1a688c684d98
The following commit(s) were added to refs/heads/main by this push:
new 6082f6ff4 Fix a template parameter check.
6082f6ff4 is described below
commit 6082f6ff49936c8df2263f2bc40c1a688c684d98
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Jul 18 12:02:21 2023 -0400
Fix a template parameter check.
---
opensaml-saml-impl/src/main/resources/templates/metadata/Extensions.vm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/opensaml-saml-impl/src/main/resources/templates/metadata/Extensions.vm b/opensaml-saml-impl/src/main/resources/templates/metadata/Extensions.vm
index 4e69271cb..ea9142e58 100644
--- a/opensaml-saml-impl/src/main/resources/templates/metadata/Extensions.vm
+++ b/opensaml-saml-impl/src/main/resources/templates/metadata/Extensions.vm
@@ -1,4 +1,4 @@
-#if ($params.displayName || $params.description || $params.logo || !$scopes.isEmpty())
+#if ($params.displayName || $params.description || $params.logo || !$params.scopes.isEmpty())
<md:Extensions>
#foreach ($scope in $params.scopes)
<shibmd:Scope regexp="false">$xmltext.escape($scope)</shibmd:Scope>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list