diff options
author | friendica <info@friendica.com> | 2011-12-18 00:21:01 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-18 00:21:01 -0800 |
commit | b0718c4f05ad8b03d4bfb1acaeea2e8ce18f59df (patch) | |
tree | 5df6540cebff599810f5e472a49950abe32846c0 | |
parent | 978717a2475bbd25d61969e9448dc6f197c8d637 (diff) | |
download | volse-hubzilla-b0718c4f05ad8b03d4bfb1acaeea2e8ce18f59df.tar.gz volse-hubzilla-b0718c4f05ad8b03d4bfb1acaeea2e8ce18f59df.tar.bz2 volse-hubzilla-b0718c4f05ad8b03d4bfb1acaeea2e8ce18f59df.zip |
typo
-rw-r--r-- | mod/poco.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/poco.php b/mod/poco.php index 6efd4ab8c..54ec60ff3 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -127,7 +127,7 @@ function poco_init(&$a) { $entry['displayName'] = $rr['name']; if($fields_ret['urls']) { $entry['urls'] = array(array('value' => $rr['url'], 'type' => 'profile')); - if($rr['addr'] && ($rr['network'] !== NETWORK_MAIL) + if($rr['addr'] && ($rr['network'] !== NETWORK_MAIL)) $entry['urls'][] = array('value' => 'acct:' . $rr['addr'], 'type' => 'webfinger'); if($fields_ret['preferredUsername']) $entry['preferredUsername'] = $rr['nick']; |