Skip to content

Commit

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

0 comments on commit 445fd63

Please sign in to comment.