1
0
mirror of https://github.com/dockur/windows.git synced 2026-07-27 21:42:36 +07:00

feat: Apply password validation (#1896)

This commit is contained in:
Kroese
2026-07-19 09:28:53 +02:00
committed by GitHub
parent f200781975
commit d29cca7f51
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1444,7 +1444,7 @@ validateLegacyUsername() {
return 0
}
validateLegacyPassword() {
validatePassword() {
local value="$1"
local desc="${2:-}"
+1
View File
@@ -1035,6 +1035,7 @@ updateXML() {
validateResolution "WIDTH" "$WIDTH" 320 || return 1
validateResolution "HEIGHT" "$HEIGHT" 200 || return 1
validateProductKey "$KEY" || return 1
validatePassword "$PASSWORD" || return 1
app=$(escapeXMLSed "$APP for $ENGINE") || return 1