Skip to content

Commit

Permalink
Change check for profile from equal to contains
Browse files Browse the repository at this point in the history
  • Loading branch information
bpross-52n committed Aug 4, 2023
1 parent 0a2b7aa commit f530521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scripts/ctl/core2main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</xsl:variable>
<xsl:variable name="SupportsGML">
<xsl:for-each select="$response//*[local-name()='ServiceIdentification']/*[local-name()='Profile']">
<xsl:if test=". = 'http://www.opengis.net/spec/GMLCOV/1.0/conf/gml'">
<xsl:if test="contains(., 'http://www.opengis.net/spec/GMLCOV/1.0/conf/gml')">
<xsl:value-of select="'true'"/>
</xsl:if>
</xsl:for-each>
Expand Down

0 comments on commit f530521

Please sign in to comment.