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 881f86812a editpic.asp: clean up HTML (#347)
881f86812a is described below
commit 881f86812ac53fa8656cd1aa13290d4e20f87c28
Author: John Bampton <[email protected]>
AuthorDate: Mon Mar 31 02:47:53 2025 +1000
editpic.asp: clean up HTML (#347)
---
main/sd/res/webview/editpic.asp | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/main/sd/res/webview/editpic.asp b/main/sd/res/webview/editpic.asp
index c00fa83298..0323809a2e 100755
--- a/main/sd/res/webview/editpic.asp
+++ b/main/sd/res/webview/editpic.asp
@@ -35,11 +35,11 @@
nUpper = CInt( (UBound(aPictureArray) - 1 ) / 2)
%>
-<HTML>
-<HEAD>
-</HEAD>
-<BODY>
- <FORM action="savepic.asp" method=get>
+<html>
+<head>
+</head>
+<body>
+ <form action="savepic.asp" method="get">
<%
if isNumeric(nPic) then
if (CInt( nPic ) >= CInt(
(UBound(aPictureArray ) - 1 ) / 2 )) then
@@ -52,27 +52,27 @@
if CInt( nPic ) > 1 then
%>
- <INPUT type=submit name="Auswahl" value="-"></INPUT>
+ <input type="submit" name="Auswahl" value="-"></input>
<%
else
%>
- <INPUT type=button value=" "></INPUT>
+ <input type="button" value=" "></input>
<%
end if
%>
- <INPUT type=text name="CurrPic" value="<% = nPic %>"
SIZE=3></INPUT>
+ <input type="text" name="CurrPic" value="<% = nPic %>"
size="3"></input>
<%
if CInt( nPic ) < CInt( nUpper ) then
%>
- <INPUT type=submit name="Auswahl" value="+"></INPUT>
+ <input type="submit" name="Auswahl" value="+"></input>
<%
else
%>
- <INPUT type=button value=" "></INPUT>
+ <input type="button" value=" "></input>
<%
end if
%>
- <INPUT type=submit name="Auswahl" value="$$2"></INPUT>
- </FORM>
-</BODY>
-</HTML>
+ <input type="submit" name="Auswahl" value="$$2"></input>
+ </form>
+</body>
+</html>