help3xsl/online_transform.xsl |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 2d664c087f11ffbd056e7c46481836158b74d73d
Author:     Olivier Hallot <[email protected]>
AuthorDate: Mon Oct 27 09:45:11 2025 -0300
Commit:     Olivier Hallot <[email protected]>
CommitDate: Mon Oct 27 13:47:05 2025 +0100

    Fix brand name in description tag.
    
    Change-Id: If2a3800b6be6ba525b5a01f1dcc6c2b657b767b6
    Reviewed-on: https://gerrit.libreoffice.org/c/help/+/193037
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <[email protected]>

diff --git a/help3xsl/online_transform.xsl b/help3xsl/online_transform.xsl
index bb4836ae91..162b9d50eb 100644
--- a/help3xsl/online_transform.xsl
+++ b/help3xsl/online_transform.xsl
@@ -150,7 +150,11 @@
         </xsl:choose>
     </xsl:variable>
     <xsl:variable name="meta_description">
-        <xsl:value-of select="substring(concat($productname,': 
',//description),1,170)"/>
+        <xsl:call-template name="brand">
+            <xsl:with-param name="string">
+                 <xsl:value-of select="substring(concat($productname,': 
',//description),1,170)"/>
+            </xsl:with-param>
+        </xsl:call-template>
     </xsl:variable>
 <html lang="{$lang}" dir="{$direction}">
     <head>

Reply via email to