aboutsummaryrefslogtreecommitdiffstats
path: root/include/connections.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2016-12-20 19:31:50 -0800
committerzotlabs <mike@macgirvin.com>2016-12-20 19:31:50 -0800
commita270ca51014e8bf98554bd5e8eda33a44aa60460 (patch)
tree24070d3d0039de5eb1cd0b27aff15371894d1548 /include/connections.php
parent493aa9f20d3a48132a83b1da0c643f80c038e617 (diff)
downloadvolse-hubzilla-a270ca51014e8bf98554bd5e8eda33a44aa60460.tar.gz
volse-hubzilla-a270ca51014e8bf98554bd5e8eda33a44aa60460.tar.bz2
volse-hubzilla-a270ca51014e8bf98554bd5e8eda33a44aa60460.zip
allow update of fn and initial setting from channel name
Diffstat (limited to 'include/connections.php')
-rw-r--r--include/connections.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/connections.php b/include/connections.php
index ca6931601..b85be33b2 100644
--- a/include/connections.php
+++ b/include/connections.php
@@ -640,6 +640,11 @@ function update_vcard($arr,$vcard = null) {
'N' => array_reverse(explode(' ', $fn))
]);
}
+ else {
+ $vcard->FN = $fn;
+ $vcard->N = array_reverse(explode(' ', $fn));
+ }
+
$org = $arr['org'];
if($org) {
$vcard->ORG = $org;