From a9737f42b8e4d223e23d7adf6c2fd95a6ed120c3 Mon Sep 17 00:00:00 2001 From: Hemachandar Date: Wed, 25 Feb 2026 19:10:09 +0530 Subject: [PATCH] fix url-encoding --- src/Appwrite/Platform/Modules/Teams/Http/Memberships/Create.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Appwrite/Platform/Modules/Teams/Http/Memberships/Create.php b/src/Appwrite/Platform/Modules/Teams/Http/Memberships/Create.php index cc061f1c1f..282d78ea0c 100644 --- a/src/Appwrite/Platform/Modules/Teams/Http/Memberships/Create.php +++ b/src/Appwrite/Platform/Modules/Teams/Http/Memberships/Create.php @@ -103,7 +103,6 @@ class Create extends Action $isAppUser = User::isApp($authorization->getRoles()); $isPrivilegedUser = User::isPrivileged($authorization->getRoles()); - $url = htmlentities($url); if (empty($url)) { if (!$isAppUser && !$isPrivilegedUser) { throw new Exception(Exception::GENERAL_ARGUMENT_INVALID, 'URL is required');