diff options
author | friendica <info@friendica.com> | 2012-06-24 21:16:55 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-24 21:16:55 -0700 |
commit | c464bc494c51bd871c2cf01a441ea2c4f8defc65 (patch) | |
tree | 14a4c5a83cab785f41ae465c308729ce7b551a56 /include/profile_advanced.php | |
parent | 9528beac34389f8d8f20de1816bca8d516a556cc (diff) | |
download | volse-hubzilla-c464bc494c51bd871c2cf01a441ea2c4f8defc65.tar.gz volse-hubzilla-c464bc494c51bd871c2cf01a441ea2c4f8defc65.tar.bz2 volse-hubzilla-c464bc494c51bd871c2cf01a441ea2c4f8defc65.zip |
add like/dislike to profiles
Diffstat (limited to 'include/profile_advanced.php')
-rw-r--r-- | include/profile_advanced.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/profile_advanced.php b/include/profile_advanced.php index ffb45090b..8dfb1beec 100644 --- a/include/profile_advanced.php +++ b/include/profile_advanced.php @@ -59,6 +59,11 @@ function advanced_profile(&$a) { if($txt = prepare_text($a->profile['interest'])) $profile['interest'] = array( t('Hobbies/Interests:'), $txt); + if($txt = prepare_text($a->profile['likes'])) $profile['likes'] = array( t('Likes:'), $txt); + + if($txt = prepare_text($a->profile['dislikes'])) $profile['dislikes'] = array( t('Dislikes:'), $txt); + + if($txt = prepare_text($a->profile['contact'])) $profile['contact'] = array( t('Contact information and Social Networks:'), $txt); if($txt = prepare_text($a->profile['music'])) $profile['music'] = array( t('Musical interests:'), $txt); |