From: Hank Grabowski Date: Mon, 6 Nov 2023 18:12:21 +0000 (-0500) Subject: Remove extraneous 'exploded' variable that was used during debugging X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4ae78e7ed6e9b4f703831b95fa1ec49a8deaabd7;p=friendica.git Remove extraneous 'exploded' variable that was used during debugging --- diff --git a/src/Security/OAuth.php b/src/Security/OAuth.php index f6a01a2a87..7a0edfef2c 100644 --- a/src/Security/OAuth.php +++ b/src/Security/OAuth.php @@ -142,7 +142,6 @@ class OAuth } // The redirect_uri could contain several URI that are separated by spaces. - $exploded = explode(' ', $application['redirect_uri']); if (($application['redirect_uri'] != $redirect_uri) && !in_array($redirect_uri, explode(' ', $application['redirect_uri']))) { return []; }