diff options
author | friendica <info@friendica.com> | 2012-05-01 19:16:18 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-01 19:16:18 -0700 |
commit | 8bd6e1aef9bcace19e4517b4f53c976d4c0a2760 (patch) | |
tree | 8501094ba29a49ee0d6e87fe155c17f3c97a4a32 /mod | |
parent | f24ffa8ef0bbda13c12f130a413a8660fff45493 (diff) | |
download | volse-hubzilla-8bd6e1aef9bcace19e4517b4f53c976d4c0a2760.tar.gz volse-hubzilla-8bd6e1aef9bcace19e4517b4f53c976d4c0a2760.tar.bz2 volse-hubzilla-8bd6e1aef9bcace19e4517b4f53c976d4c0a2760.zip |
first try common friends for visitors
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profile.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/profile.php b/mod/profile.php index e9d4ca344..41c5eed4b 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -143,6 +143,10 @@ function profile_content(&$a, $update = 0) { return $o; } + + $o .= common_friends_vistor_widget($a->profile['profile_uid']); + + if(x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner) $o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . t('Tips for New Members') . '</b></a>' . EOL; |