mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-14 10:37:06 -07:00
Disconnect comment links fom the WebUI (#15251)
This commit is contained in:
parent
ce554e6c77
commit
60b1e692b9
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ window.qBittorrent.Misc = (function() {
|
|||
*/
|
||||
const parseHtmlLinks = function(text) {
|
||||
const exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|])/ig;
|
||||
return text.replace(exp, "<a target='_blank' href='$1'>$1</a>");
|
||||
return text.replace(exp, "<a target='_blank' rel='noopener noreferrer' href='$1'>$1</a>");
|
||||
}
|
||||
|
||||
const escapeHtml = function(str) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue