mirror of
https://github.com/anikeen-com/acme.sh.git
synced 2026-03-13 13:46:10 +00:00
fix format
This commit is contained in:
@@ -164,12 +164,12 @@ _inwx_check_cookie() {
|
||||
}
|
||||
|
||||
_htmlEscape() {
|
||||
local s
|
||||
s=${1//&/&}
|
||||
s=${s//</<}
|
||||
s=${s//>/>}
|
||||
s=${s//'"'/"}
|
||||
printf -- %s "$s"
|
||||
_s="$1"
|
||||
_s=$(echo "$_s" | sed "s/&/&/g")
|
||||
_s=$(echo "$_s" | sed "s/</\</g")
|
||||
_s=$(echo "$_s" | sed "s/>/\>/g")
|
||||
_s=$(echo "$_s" | sed 's/"/\"/g')
|
||||
printf -- %s "$_s"
|
||||
}
|
||||
|
||||
_inwx_login() {
|
||||
|
||||
Reference in New Issue
Block a user