Skip to content

Commit

Permalink
Fixed XPath syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
namedgraph committed Oct 23, 2023
1 parent 9693992 commit 4b17a29
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ extension-element-prefixes="ixsl"
<xsl:call-template name="xhtml:Input">
<xsl:with-param name="name" select="'v'"/>
<xsl:with-param name="type" select="'hidden'"/>
<xsl:with-param name="value" select="ac:absolute-path($ldh:requestUri))"/>
<xsl:with-param name="value" select="ac:absolute-path($ldh:requestUri)"/>
</xsl:call-template>

<input type="hidden" class="target-id"/>
Expand Down Expand Up @@ -796,7 +796,7 @@ extension-element-prefixes="ixsl"
<xsl:call-template name="xhtml:Input" use-when="system-property('xsl:product-name') = 'SAXON'">
<xsl:with-param name="name" select="'v'"/>
<xsl:with-param name="type" select="'hidden'"/>
<xsl:with-param name="value" select="ac:absolute-path($ldh:requestUri))"/>
<xsl:with-param name="value" select="ac:absolute-path($ldh:requestUri)"/>
</xsl:call-template>

<input type="hidden" class="target-id"/>
Expand Down

0 comments on commit 4b17a29

Please sign in to comment.