This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new bf1eec315e show.pl: use lowercase HTML tags (#279)
bf1eec315e is described below
commit bf1eec315e438fb5594291cae13dc7dd4ba0c1d2
Author: John Bampton <[email protected]>
AuthorDate: Thu Feb 13 07:01:08 2025 +1000
show.pl: use lowercase HTML tags (#279)
---
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>";