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

commit f56638e20aab90bd865661e7c63b0c33d96f4ba0
Author: John Bampton <[email protected]>
AuthorDate: Thu Feb 13 07:01:08 2025 +1000

    show.pl: use lowercase HTML tags (#279)
    
    (cherry picked from commit bf1eec315e438fb5594291cae13dc7dd4ba0c1d2)
---
 main/sd/res/webview/show.pl | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/main/sd/res/webview/show.pl b/main/sd/res/webview/show.pl
index 88bbdf4808..b1e74832a5 100755
--- a/main/sd/res/webview/show.pl
+++ b/main/sd/res/webview/show.pl
@@ -45,15 +45,15 @@ if( abs( $sCurrPic ) > 0 )
     }
 }
 
-print "<HTML>";
+print "<html>";
 
-print "<HEAD>";
-    print "<TITLE>$$1</TITLE>";
-print "</HEAD>";
+print "<head>";
+    print "<title>$$1</title>";
+print "</head>";
 
-print "<BODY bgcolor=\"white\">";
-    print "<P ALIGN=CENTER><IMG src=\"" . $sPictureName1 . "\" width=$$4 
height=$$5 border=0>";
-    print "<P><IMG src=\"" . $sPictureName2 . "\" width=1 height=1 border=0>";
-print "</BODY>";
+print "<body bgcolor=\"white\">";
+    print "<p align=center><img src=\"" . $sPictureName1 . "\" width=$$4 
height=$$5 border=0>";
+    print "<p><img src=\"" . $sPictureName2 . "\" width=1 height=1 border=0>";
+print "</body>";
 
-print "</HTML>";
+print "</html>";

Reply via email to