diff options
author | redmatrix <git@macgirvin.com> | 2016-01-28 17:06:13 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-01-28 17:06:13 -0800 |
commit | c214692f661488df30eaf00ca85da94a5ecc1e14 (patch) | |
tree | d5d0678970b79e997a46516d71618a724a55b471 /boot.php | |
parent | 35a9a468ceeb7b8e8b5ae2f026d3bdd76dff68be (diff) | |
download | volse-hubzilla-c214692f661488df30eaf00ca85da94a5ecc1e14.tar.gz volse-hubzilla-c214692f661488df30eaf00ca85da94a5ecc1e14.tar.bz2 volse-hubzilla-c214692f661488df30eaf00ca85da94a5ecc1e14.zip |
add peer filtering to all .well-known services
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -863,7 +863,7 @@ class App { && array_key_exists('baseurl',$this->config['system']) && strlen($this->config['system']['baseurl'])) { $url = $this->config['system']['baseurl']; - + $url = trim($url,'\\/'); return $url; } @@ -881,6 +881,7 @@ class App { && array_key_exists('baseurl',$this->config['system']) && strlen($this->config['system']['baseurl'])) { $url = $this->config['system']['baseurl']; + $url = trim($url,'\\/'); } $parsed = @parse_url($url); |