Unverified Commit 09eccf6f authored by Armando Lüscher's avatar Armando Lüscher
Browse files

Use more flexible version of uppercase to lowercase conversion.

parent edfefb67
......@@ -86,7 +86,7 @@ _cyon_urlencode() {
_cyon_load_parameters() {
# Read the required parameters to add the TXT entry.
fulldomain="$(printf "%s" "${1}" | tr '[:upper:]' '[:lower:]')"
fulldomain="$(printf "%s" "${1}" | tr '[A-Z]' '[a-z]')"
fulldomain_idn="${fulldomain}"
# Special case for IDNs, as cyon needs a domain environment change,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment