From 22800c74c031b6d107eab4ea3603e80d88d4d3a5 Mon Sep 17 00:00:00 2001 From: volga629-1 <59034879+volga629-1@users.noreply.github.com> Date: Mon, 22 Dec 2025 14:18:07 -0500 Subject: [PATCH] Bug fix Remove port from domain_name in authentication (#7662) * Remove port from domain_name in authentication Update domain_name property after removing port. Before ``` ["domain_name"]=> string(10) "1.1.1.1:8080" ``` After ``` ["domain_name"]=> string(10) "1.1.1.1" ``` --- core/authentication/resources/classes/authentication.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/authentication/resources/classes/authentication.php b/core/authentication/resources/classes/authentication.php index 2feab2a1e0..53a9f04f7f 100644 --- a/core/authentication/resources/classes/authentication.php +++ b/core/authentication/resources/classes/authentication.php @@ -463,7 +463,7 @@ class authentication { //remote port number from the domain name $domain_array = explode(":", $this->domain_name); if (count($domain_array) > 1) { - $domain_name = $domain_array[0]; + $this->domain_name = $domain_array[0]; } //if the username