Browse Source

fix format

pull/5219/merge
neil 6 days ago
parent
commit
f86ee84457
  1. 8
      dnsapi/dns_inwx.sh

8
dnsapi/dns_inwx.sh

@ -165,10 +165,10 @@ _inwx_check_cookie() {
_htmlEscape() { _htmlEscape() {
_s="$1" _s="$1"
_s=$(echo "$_s" | sed "s/&/&/g")
_s=$(echo "$_s" | sed "s/</\&lt;/g")
_s=$(echo "$_s" | sed "s/>/\&gt;/g")
_s=$(echo "$_s" | sed 's/"/\&quot;/g')
_s=$(echo "$_s" | sed "s/&/&amp;/g")
_s=$(echo "$_s" | sed "s/</\&lt;/g")
_s=$(echo "$_s" | sed "s/>/\&gt;/g")
_s=$(echo "$_s" | sed 's/"/\&quot;/g')
printf -- %s "$_s" printf -- %s "$_s"
} }

Loading…
Cancel
Save