Skip to content

Commit

Permalink
Fixed xsl:attribute expression
Browse files Browse the repository at this point in the history
  • Loading branch information
namedgraph committed Nov 15, 2024
1 parent 202592e commit 1a3a2ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ exclude-result-prefixes="#all">
<xsl:sort select="ac:label(.)" lang="{$ldt:lang}"/>

<option>
<xsl:if test="">
<xsl:with-param name="selected" select="text() = $value"/>
<xsl:if test="text() = $value">
<xsl:attribute name="selected" select="'selected'"/>
</xsl:if>

<xsl:value-of select="."/>
Expand Down

0 comments on commit 1a3a2ed

Please sign in to comment.