diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2018-03-20 10:08:35 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@libreoffice.org> | 2018-03-20 14:46:30 +0100 |
commit | 679dee887342141b13717794445795b068e68258 (patch) | |
tree | 496833525d71c672a082fed8a7fe1efd40b8ddf5 /help3xsl | |
parent | dd03b7ecde2abb961790a69f99aeec9e3fbd653e (diff) |
Fix path for images in offline/online help pages
Change-Id: I69a09398a3465ba3fb8eee953e4d9df67ee9ec84
Reviewed-on: https://gerrit.libreoffice.org/51639
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Tested-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'help3xsl')
-rw-r--r-- | help3xsl/online_transform.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl index 743419d679..0e3a64950b 100644 --- a/help3xsl/online_transform.xsl +++ b/help3xsl/online_transform.xsl @@ -1042,7 +1042,7 @@ <xsl:value-of select="concat($target,$tmp0,'/ui/', $tmp2, '/',$lang,'/',$tmp3)"/> </xsl:when> <xsl:otherwise> - <xsl:value-of select="concat($target,'/',@src)"/> + <xsl:value-of select="concat($target,@src)"/> </xsl:otherwise> </xsl:choose> </xsl:when> |