Merge branch 'master' into 4921-authhash-cache-key-collision

This commit is contained in:
Isaac Connor
2026-06-17 07:53:04 -04:00
committed by GitHub

View File

@@ -76,7 +76,7 @@ function ajaxRequest(params) {
function processRows(rows) {
$j.each(rows, function(ndx, row) {
try {
row.Message = decodeURIComponent(row.Message)
row.Message = decodeURIComponent(row.Message.replace(/%(?![0-9A-Fa-f]{2})/g, '%25'))
.replace(/</g, "&lt;").replace(/>/g, "&gt;") // Replace link tags
.replace(/event (\d+)/g, "<a href=\"?view=event&eid=$1\">event $1</a>");
} catch (e) {