remove prior additions which tried to use oathtool in tests

This commit is contained in:
Robert Rettig
2025-12-20 14:53:01 +01:00
parent 1b2630dc0d
commit 5fb42b7339
2 changed files with 12 additions and 12 deletions

View File

@@ -172,10 +172,10 @@ _inwx_check_cookie() {
_htmlEscape() {
_s="$1"
_s=$(printf '%s' "$_s" | sed "s/&/&/g")
_s=$(printf '%s' "$_s" | sed "s/</\&lt;/g")
_s=$(printf '%s' "$_s" | sed "s/>/\&gt;/g")
_s=$(printf '%s' "$_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"
}