From e8262ce12fb88df9778b23c76446f7eb0123ae8a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 12 Dec 2025 11:15:35 +0000 Subject: [PATCH] fix: avoid double escaping relayhost passwords Co-authored-by: DerLinkman <62480600+DerLinkman@users.noreply.github.com> --- data/web/inc/functions.transports.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/web/inc/functions.transports.inc.php b/data/web/inc/functions.transports.inc.php index 05ad25d85..f4d5095d1 100644 --- a/data/web/inc/functions.transports.inc.php +++ b/data/web/inc/functions.transports.inc.php @@ -30,7 +30,7 @@ function relayhost($_action, $_data = null) { $stmt->execute(array( ':hostname' => $hostname, ':username' => $username, - ':password' => str_replace(':', '\:', $password), + ':password' => $password, ':active' => '1' )); }