This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push:
new fb864bf04f Merge pull request #284 from
jbampton/use-lowercase-html-tags
fb864bf04f is described below
commit fb864bf04f64dd65b5c4d81f55f0b7e0e043ffae
Author: Matthias Seidel <[email protected]>
AuthorDate: Sat Feb 15 13:08:06 2025 +0100
Merge pull request #284 from jbampton/use-lowercase-html-tags
Helper.java: user lowercase HTML tags
(cherry picked from commit a2ce8b27fde4420dc5ebe9d404165b6d8e16bf03)
---
main/swext/mediawiki/src/com/sun/star/wiki/Helper.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main/swext/mediawiki/src/com/sun/star/wiki/Helper.java
b/main/swext/mediawiki/src/com/sun/star/wiki/Helper.java
index b669219ea0..bde38ed0b4 100644
--- a/main/swext/mediawiki/src/com/sun/star/wiki/Helper.java
+++ b/main/swext/mediawiki/src/com/sun/star/wiki/Helper.java
@@ -151,8 +151,8 @@ public class Helper
private static String[] m_pConfigStrings;
- private static final String sHTMLHeader = "<HTML><HEAD><meta
http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"
/><TITLE></TITLE></HEAD><BODY>";
- private static final String sHTMLFooter = "</BODY></HTML>";
+ private static final String sHTMLHeader = "<html><head><meta
http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"
/><title></title></head><body>";
+ private static final String sHTMLFooter = "</body></html>";
private static Random m_aRandom;
private static MultiThreadedHttpConnectionManager m_aConnectionManager;