diff options
author | friendica <info@friendica.com> | 2013-12-25 01:57:04 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-25 01:57:04 -0800 |
commit | fe00e9b2615dbc06ee0db82ca2c4334baa64e258 (patch) | |
tree | cd940d1b5b9aacf5455d92e95a2e324fbdffd546 /include/dir_fns.php | |
parent | 48f882c34b737205451a28da1238a38ec0d4af00 (diff) | |
download | volse-hubzilla-fe00e9b2615dbc06ee0db82ca2c4334baa64e258.tar.gz volse-hubzilla-fe00e9b2615dbc06ee0db82ca2c4334baa64e258.tar.bz2 volse-hubzilla-fe00e9b2615dbc06ee0db82ca2c4334baa64e258.zip |
extend the directory profiles a bit more
Diffstat (limited to 'include/dir_fns.php')
-rw-r--r-- | include/dir_fns.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/dir_fns.php b/include/dir_fns.php index 7be0bd4c6..ab8b67985 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -167,6 +167,10 @@ function syncdirs($uid) { $profile['region'] = $p[0]['region']; $profile['postcode'] = $p[0]['postal_code']; $profile['country'] = $p[0]['country_name']; + $profile['about'] = $p[0]['about']; + $profile['homepage'] = $p[0]['homepage']; + $profile['hometown'] = $p[0]['hometown']; + if($p[0]['keywords']) { $tags = array(); $k = explode(' ',$p[0]['keywords']); |