From: Evan Prodromou <evan@controlyourself.ca>
Date: Tue, 31 Mar 2009 14:09:11 +0000 (-0400)
Subject: give the correct root url when SSL enabled
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1fbf9a042e2e7ed1f67dfad9b7fe3b96019bd1a3;p=quix0rs-gnu-social.git

give the correct root url when SSL enabled
---

diff --git a/lib/openid.php b/lib/openid.php
index 3aa488b6d4..f3769c6fce 100644
--- a/lib/openid.php
+++ b/lib/openid.php
@@ -160,7 +160,7 @@ function oid_authenticate($openid_url, $returnto, $immediate=false)
         $auth_request->addExtension($sreg_request);
     }
 
-    $trust_root = common_path('');
+    $trust_root = common_root_url(true);
     $process_url = common_local_url($returnto);
 
     if ($auth_request->shouldSendRedirect()) {
diff --git a/lib/util.php b/lib/util.php
index fdcae0aca0..98a3ae8448 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -952,9 +952,9 @@ function common_profile_url($nickname)
 
 // Should make up a reasonable root URL
 
-function common_root_url()
+function common_root_url($ssl=false)
 {
-    return common_path('');
+    return common_path('', $ssl);
 }
 
 // returns $bytes bytes of random data as a hexadecimal string