mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2026-01-09 00:13:17 +08: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