diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2018-07-24 12:28:08 -0300 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2018-08-07 17:58:33 +0200 |
commit | 29af334417309f14005d91166e9d749dba52aceb (patch) | |
tree | 5f50c6eae87efa7f1c32621b5f41815b699dc2e4 | |
parent | e174db8846971e669e7a289948165d6bc45de153 (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>
-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> |