Bug 29185: (QA follow-up) Capitalize AND to ensure it is a boolean for ES

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Nick Clemens 2023-04-28 12:14:51 +00:00 committed by Tomas Cohen Arazi
parent 6d43659f79
commit 2d004a2e29
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F
2 changed files with 2 additions and 2 deletions

View file

@ -759,7 +759,7 @@
<xsl:choose>
<!-- search for (1) controlnumber AND orgcode, or (2) only controlnumber, or (3) title -->
<xsl:when test="$controlnumber!='' and $orgcode!=''">
<xsl:value-of select="str:encode-uri(concat($scriptname,'?q=Control-number:',$controlnumber,' and Control-number-identifier:',$orgcode),false())"/>
<xsl:value-of select="str:encode-uri(concat($scriptname,'?q=Control-number:',$controlnumber,' AND Control-number-identifier:',$orgcode),false())"/>
</xsl:when>
<xsl:when test="$controlnumber!=''">
<xsl:value-of select="str:encode-uri(concat($scriptname,'?q=Control-number:',$controlnumber),false())"/>

View file

@ -722,7 +722,7 @@
<xsl:choose>
<!-- search for (1) controlnumber AND orgcode, or (2) only controlnumber, or (3) title -->
<xsl:when test="$controlnumber!='' and $orgcode!=''">
<xsl:value-of select="str:encode-uri(concat($scriptname,'?q=Control-number:',$controlnumber,' and Control-number-identifier:',$orgcode),false())"/>
<xsl:value-of select="str:encode-uri(concat($scriptname,'?q=Control-number:',$controlnumber,' AND Control-number-identifier:',$orgcode),false())"/>
</xsl:when>
<xsl:when test="$controlnumber!=''">
<xsl:value-of select="str:encode-uri(concat($scriptname,'?q=Control-number:',$controlnumber),false())"/>