mirror of
https://github.com/go-gitea/gitea.git
synced 2025-10-13 12:16:09 +00:00
Address some CodeQL security concerns (#35572)
Although there is no real security problem
This commit is contained in:
@@ -35,7 +35,12 @@ export function isDarkTheme(): boolean {
|
||||
|
||||
/** strip <tags> from a string */
|
||||
export function stripTags(text: string): string {
|
||||
return text.replace(/<[^>]*>?/g, '');
|
||||
let prev = '';
|
||||
while (prev !== text) {
|
||||
prev = text;
|
||||
text = text.replace(/<[^>]*>?/g, '');
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
||||
export function parseIssueHref(href: string): IssuePathInfo {
|
||||
|
Reference in New Issue
Block a user