From 15eb19fda11af5f88da9eda41b20873e252ce50a Mon Sep 17 00:00:00 2001 From: "Carlos V." <76731844+cvc90@users.noreply.github.com> Date: Sat, 12 Oct 2024 08:24:35 +0200 Subject: [PATCH] Update userNotifications.php Changed the destination "absolute URL" to "relative URL" in reports to fix issues for reverse proxies --- front/userNotifications.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/userNotifications.php b/front/userNotifications.php index cafbc4aa..f4dc2520 100755 --- a/front/userNotifications.php +++ b/front/userNotifications.php @@ -127,7 +127,7 @@ require 'php/templates/header.php'; "render": function(data, type, row) { if (data.includes("Report:")) { var guid = data.split(":")[1].trim(); - return `Go to Report`; + return `Go to Report`; } else { return data; }