Browse Source
Use more flexible version of uppercase to lowercase conversion.
pull/414/head
Armando Lüscher
8 years ago
No known key found for this signature in database
GPG Key ID: 3D71085D14920359
1 changed files with
1 additions and
1 deletions
-
dnsapi/dns_cyon.sh
|
|
@ -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, |
|
|
|