1
1
Fork 0

Support bbcode size tag - I may regret this...

This commit is contained in:
Friendika 2011-02-08 21:26:28 -08:00
commit 5899ae9017
4 changed files with 7 additions and 5 deletions

View file

@ -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'],'\\/');
}