diff options
author | Friendika <info@friendika.com> | 2011-02-08 21:26:28 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-08 21:26:28 -0800 |
commit | 5899ae9017c351b9987868871605f3f2324c62c0 (patch) | |
tree | 376d540bb319d74d734cdadcd096b0fbb8ad5767 /boot.php | |
parent | 6b8bbef6c795fcf73c7c7271decf0f0bfed158c7 (diff) | |
download | volse-hubzilla-5899ae9017c351b9987868871605f3f2324c62c0.tar.gz volse-hubzilla-5899ae9017c351b9987868871605f3f2324c62c0.tar.bz2 volse-hubzilla-5899ae9017c351b9987868871605f3f2324c62c0.zip |
Support bbcode size tag - I may regret this...
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -305,9 +305,9 @@ class App { $this->scheme = $parsed['scheme']; $this->hostname = $parsed['host']; - if($parsed['port']) + if(x($parsed,'port')) $this->hostname .= ':' . $parsed['port']; - if($parsed['path']) + if(x($parsed,'path')) $this->path = trim($parsed['path'],'\\/'); } |