summaryrefslogtreecommitdiff
path: root/lib/util.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-11 15:09:46 -0800
committerEvan Prodromou <evan@status.net>2010-01-11 15:09:46 -0800
commit5d676352c376fd5f69d5cfee491e6243a6e8c866 (patch)
tree37478b74935517ee1176556546b10918f6fff843 /lib/util.php
parent4afa1ce4f3e9ef7f4939843905cce76e88f9a73f (diff)
strip out session ID from root URL
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/util.php b/lib/util.php
index 1237d718b..3e52f5db1 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -838,7 +838,7 @@ function common_path($relative, $ssl=false)
}
$relative = common_inject_session($relative, $serverpart);
-
+
return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
}
@@ -849,7 +849,7 @@ function common_inject_session($url, $serverpart = null)
if (empty($serverpart)) {
$serverpart = parse_url($url, PHP_URL_HOST);
}
-
+
$currentServer = $_SERVER['HTTP_HOST'];
// Are we pointing to another server (like an SSL server?)
@@ -866,7 +866,7 @@ function common_inject_session($url, $serverpart = null)
}
}
}
-
+
return $url;
}
@@ -1057,7 +1057,12 @@ function common_profile_url($nickname)
function common_root_url($ssl=false)
{
- return common_path('', $ssl);
+ $url = common_path('', $ssl);
+ $i = strpos($url, '?');
+ if ($i !== false) {
+ $url = substr($url, 0, $i);
+ }
+ return $url;
}
// returns $bytes bytes of random data as a hexadecimal string