fix: avoid double escaping relayhost passwords

Co-authored-by: DerLinkman <62480600+DerLinkman@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-12-12 11:15:35 +00:00
parent e53e4f890f
commit e8262ce12f

View file

@ -30,7 +30,7 @@ function relayhost($_action, $_data = null) {
$stmt->execute(array(
':hostname' => $hostname,
':username' => $username,
':password' => str_replace(':', '\:', $password),
':password' => $password,
':active' => '1'
));
}