aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-02-08 21:26:28 -0800
committerFriendika <info@friendika.com>2011-02-08 21:26:28 -0800
commit5899ae9017c351b9987868871605f3f2324c62c0 (patch)
tree376d540bb319d74d734cdadcd096b0fbb8ad5767 /boot.php
parent6b8bbef6c795fcf73c7c7271decf0f0bfed158c7 (diff)
downloadvolse-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.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index 3edd45971..9d41abec4 100644
--- a/boot.php
+++ b/boot.php
@@ -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'],'\\/');
}