Fix typo.

This commit is contained in:
Dave Longley 2013-03-12 12:33:55 -04:00
parent 4b0ef081b6
commit d5c0460356
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ function jsonld_parse_url($url) {
else { else {
$rval['authority'] = $rval['host']; $rval['authority'] = $rval['host'];
if(isset($rval['port'])) { if(isset($rval['port'])) {
$rval .= ":{$rval['port']}"; $rval['authority'] .= ":{$rval['port']}";
} }
if(isset($rval['auth'])) { if(isset($rval['auth'])) {
$rval['authority'] = "{$rval['auth']}@{$rval['authority']}"; $rval['authority'] = "{$rval['auth']}@{$rval['authority']}";