diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-05-05 10:03:57 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-05-05 10:03:57 +0200 |
commit | 0895756658e3019b2badf876d4699e298234208c (patch) | |
tree | c3701fa287801dc937c327de999b51bcba2248c2 | |
parent | 192b69b11a05adee52e09d434bab004e0b0d07d1 (diff) | |
parent | c6e65ec6dab38ee67afe1d07f5c003413cfdf67e (diff) | |
download | volse-hubzilla-0895756658e3019b2badf876d4699e298234208c.tar.gz volse-hubzilla-0895756658e3019b2badf876d4699e298234208c.tar.bz2 volse-hubzilla-0895756658e3019b2badf876d4699e298234208c.zip |
Merge remote-tracking branch 'mike/master' into dev
-rw-r--r-- | Zotlabs/Module/Wfinger.php | 3 | ||||
-rwxr-xr-x | boot.php | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Module/Wfinger.php b/Zotlabs/Module/Wfinger.php index 81d4beaed..88cb3e879 100644 --- a/Zotlabs/Module/Wfinger.php +++ b/Zotlabs/Module/Wfinger.php @@ -109,7 +109,8 @@ class Wfinger extends \Zotlabs\Web\Controller { $aliases = array( z_root() . (($pchan) ? '/pchan/' : '/channel/') . $r[0]['channel_address'], - z_root() . '/~' . $r[0]['channel_address'] + z_root() . '/~' . $r[0]['channel_address'], + z_root() . '/@' . $r[0]['channel_address'] ); if($h) { @@ -886,7 +886,7 @@ class App { // unix style "homedir" - if(substr(self::$cmd, 0, 1) === '~') + if((substr(self::$cmd, 0, 1) === '~') || (substr(self::$cmd, 0, 1) === '@')) self::$cmd = 'channel/' . substr(self::$cmd, 1); /* |