diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2018-07-24 12:28:08 -0300 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2018-08-09 16:55:26 +0200 |
commit | bb52d3d578e46c1aef16548b2ff55dc66f7f19fe (patch) | |
tree | 48957b4a5a2bd80c9b3225e7334aeb855dd59e8d | |
parent | 4b608ea82dc32cdbc1f650988e1202704e4b9f23 (diff) |
Fix <otherwise> case for icon replacement
Change-Id: Ia5db370d1e19aa2818fba7ad7b2427692ff1b80e
Reviewed-on: https://gerrit.libreoffice.org/57927
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
(cherry picked from commit 1f5dbe3cfae77c879d2b7c95131cc87393dccb00)
Reviewed-on: https://gerrit.libreoffice.org/58753
Reviewed-by: Jan Holesovsky <kendy@collabora.com>
-rw-r--r-- | help3xsl/link.txt.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/help3xsl/link.txt.xsl b/help3xsl/link.txt.xsl index 0d3c219f55..041e7d7d47 100644 --- a/help3xsl/link.txt.xsl +++ b/help3xsl/link.txt.xsl @@ -1717,7 +1717,7 @@ Stylesheet map Colibre icon images from link.txt <xsl:when test="$src1='cmd/sc_cellprotection.png'"><xsl:text>cmd/sc_protect.png</xsl:text></xsl:when> <xsl:when test="$src1='cmd/lc_cellprotection.png'"><xsl:text>cmd/lc_protect.png</xsl:text></xsl:when> -<xsl:otherwise><xsl:text select="$src1"/></xsl:otherwise> +<xsl:otherwise><xsl:value-of select="$src1"/></xsl:otherwise> </xsl:choose> </xsl:template> |