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 de78dc52d9 savepic.pl: use lowercase HTML tags (#274)
de78dc52d9 is described below
commit de78dc52d978624859cb64687a595fc22f800666
Author: John Bampton <[email protected]>
AuthorDate: Tue Feb 11 07:16:07 2025 +1000
savepic.pl: use lowercase HTML tags (#274)
(cherry picked from commit 67368a5c09def9c1fcb17700865cc02feafb2088)
---
main/sd/res/webview/savepic.pl | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/main/sd/res/webview/savepic.pl b/main/sd/res/webview/savepic.pl
index 36222abad5..20eb3de510 100755
--- a/main/sd/res/webview/savepic.pl
+++ b/main/sd/res/webview/savepic.pl
@@ -51,11 +51,11 @@ if( (abs( $sCurrPic ) > 0) && ( abs( $sCurrPic ) < (
$nPictureArrayLen ) ) )
# return to edit page
print "Content-type: text/html\n\n";
-print "<HTML>\n<HEAD>\n";
-print "<META http-equiv=\"refresh\" CONTENT=\"0 ;URL=editpic.pl\">";
+print "<html>\n<head>\n";
+print "<meta http-equiv=\"refresh\" content=\"0 ;URL=editpic.pl\">";
print "<title>savepic.pl</title>";
-print "</HEAD>\n";
-print "<BODY>\n";
-print "</BODY>\n";
-print "</HTML>\n";
+print "</head>\n";
+print "<body>\n";
+print "</body>\n";
+print "</html>\n";
%>