From 117838b4fe70d65fe03b07ee27def808b96e4033 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no>
Date: Tue, 12 Jan 2010 07:03:33 +0000
Subject: [PATCH] Fix bug related to OAuth normalizing URL

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2098 44740490-163a-0410-bde0-09ae8108e29a
---
 modules/oauth/libextinc/OAuth.php | 1 -
 1 file changed, 1 deletion(-)

diff --git a/modules/oauth/libextinc/OAuth.php b/modules/oauth/libextinc/OAuth.php
index c3dfb8646..ba74acd4c 100644
--- a/modules/oauth/libextinc/OAuth.php
+++ b/modules/oauth/libextinc/OAuth.php
@@ -326,7 +326,6 @@ class OAuthRequest {/*{{{*/
   public function get_normalized_http_url() {/*{{{*/
     $parts = parse_url($this->http_url);
 
-	if (!isset($parts['port'])) $parts['port'] = '80';
 	if (!isset($parts['path'])) $parts['part'] = '';
 
     $port = @$parts['port'];
-- 
GitLab