Merge branch 'hotfix-sql-xss-injection' into dev

This commit is contained in:
Bubka
2023-06-30 17:01:04 +02:00
12 changed files with 88 additions and 17 deletions

View File

@ -137,6 +137,10 @@ Vue.mixin({
}
return this.$root.userPreferences.showOtpAsDot ? pwd.replace(/[0-9]/g, '●') : pwd
},
strip_tags (str) {
return str.replace(/(<([^> ]+)>)/ig, "")
}
}
})