aboutsummaryrefslogtreecommitdiffstats
path: root/include/security.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-07-11 18:59:54 -0700
committerredmatrix <git@macgirvin.com>2016-07-11 18:59:54 -0700
commit168d35747da8730a7e3a1e6cb40d4f411e147be3 (patch)
tree486ea7f5dd97538cbea6c4566b0c44193db4dc1c /include/security.php
parent17c3e12eabf93fe76061af0b97d25c6a9d080025 (diff)
downloadvolse-hubzilla-168d35747da8730a7e3a1e6cb40d4f411e147be3.tar.gz
volse-hubzilla-168d35747da8730a7e3a1e6cb40d4f411e147be3.tar.bz2
volse-hubzilla-168d35747da8730a7e3a1e6cb40d4f411e147be3.zip
use the get_hostname function rather than parse the url
Diffstat (limited to 'include/security.php')
-rw-r--r--include/security.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/security.php b/include/security.php
index 6c245fa09..212690d91 100644
--- a/include/security.php
+++ b/include/security.php
@@ -125,7 +125,7 @@ function change_channel($change_channel) {
);
if($x) {
$_SESSION['my_url'] = $x[0]['xchan_url'];
- $_SESSION['my_address'] = $r[0]['channel_address'] . '@' . substr(z_root(), strpos(z_root(), '://') + 3);
+ $_SESSION['my_address'] = $r[0]['channel_address'] . '@' . App::get_hostname();
App::set_observer($x[0]);
App::set_perms(get_all_perms(local_channel(), $hash));