diff options
author | Friendika <info@friendika.com> | 2011-03-21 21:43:22 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-21 21:43:22 -0700 |
commit | ee11a74d0b7cff5061a4d498f8ecd15e55b91b07 (patch) | |
tree | f27719e0f09ca48f98156dd3af38761d36668e23 /mod/contacts.php | |
parent | c74367e4c2dbcb9ef20bc07a3ea815902c61600a (diff) | |
download | volse-hubzilla-ee11a74d0b7cff5061a4d498f8ecd15e55b91b07.tar.gz volse-hubzilla-ee11a74d0b7cff5061a4d498f8ecd15e55b91b07.tar.bz2 volse-hubzilla-ee11a74d0b7cff5061a4d498f8ecd15e55b91b07.zip |
profile match
Diffstat (limited to 'mod/contacts.php')
-rw-r--r-- | mod/contacts.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mod/contacts.php b/mod/contacts.php index c1455ec54..aee6548fe 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -9,7 +9,10 @@ function contacts_init(&$a) { $a->page['aside'] .= group_side(); if($a->config['register_policy'] != REGISTER_CLOSED) - $a->page['aside'] .= '<div class="side-invite-link-wrapper" id="side-invite-link-wrapper" ><a href="invite" class="side-invite-link" id="side-invite-link">' . t("Invite Friends") . '</a></div>'; + $a->page['aside'] .= '<div class="side-link" id="side-invite-link" ><a href="invite" >' . t("Invite Friends") . '</a></div>'; + + if(strlen(get_config('system','directory_submit_url'))) + $a->page['aside'] .= '<div class="side-link" id="side-match-link"><a href="match" >' . t('Find People With Shared Interests') . '</a></div>'; $tpl = load_view_file('view/follow.tpl'); $a->page['aside'] .= replace_macros($tpl,array( @@ -18,6 +21,8 @@ function contacts_init(&$a) { '$follow' => t('Follow') )); + + } function contacts_post(&$a) { |