sw/source/filter/html/wrthtml.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6e23b10bba885a6ee766c5e1ad458c95d2087ad4
Author:     Luboš Luňák <l.lu...@collabora.com>
AuthorDate: Fri Jul 8 13:12:43 2022 +0200
Commit:     Michael Stahl <michael.st...@allotropia.de>
CommitDate: Mon Jul 11 13:23:52 2022 +0200

    include namespace when writing <div> tag in Writer HTML export
    
    Change-Id: I5ae6cea44b1bff8dc55162e2f9cd6f034fe2857d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136897
    Tested-by: Jenkins
    Reviewed-by: Luboš Luňák <l.lu...@collabora.com>
    (cherry picked from commit e7cc4ceca48c263270c01e9178ac3d68869f0050)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136927
    Reviewed-by: Michael Stahl <michael.st...@allotropia.de>

diff --git a/sw/source/filter/html/wrthtml.cxx 
b/sw/source/filter/html/wrthtml.cxx
index 2c0186c22b1f..d216e0d51cb7 100644
--- a/sw/source/filter/html/wrthtml.cxx
+++ b/sw/source/filter/html/wrthtml.cxx
@@ -700,7 +700,7 @@ static void lcl_html_OutSectionStartTag( SwHTMLWriter& 
rHTMLWrt,
         rHTMLWrt.OutNewLine();
 
     OStringBuffer sOut;
-    sOut.append('<').append(OOO_STRING_SVTOOLS_HTML_division);
+    sOut.append("<" + rHTMLWrt.GetNamespace() + 
OOO_STRING_SVTOOLS_HTML_division);
 
     const OUString& rName = rSection.GetSectionName();
     if( !rName.isEmpty() && !bContinued )

Reply via email to