diff options
author | Friendika <info@friendika.com> | 2011-11-01 21:27:11 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-11-01 21:27:11 -0700 |
commit | e38aa672635245cf3730fc88bbe8d36a6ecaef22 (patch) | |
tree | 8328f8d6f1ef29232228009b1bf55e792562cafb /mod | |
parent | 158028a0ac00e388347ac366c88ad07c0fe4bfb9 (diff) | |
download | volse-hubzilla-e38aa672635245cf3730fc88bbe8d36a6ecaef22.tar.gz volse-hubzilla-e38aa672635245cf3730fc88bbe8d36a6ecaef22.tar.bz2 volse-hubzilla-e38aa672635245cf3730fc88bbe8d36a6ecaef22.zip |
link suggestions into the main code
Diffstat (limited to 'mod')
-rw-r--r-- | mod/suggest.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/suggest.php b/mod/suggest.php index f8b898126..2d2a32938 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -1,6 +1,7 @@ <?php require_once('include/socgraph.php'); +require_once('include/contact_widgets.php'); function suggest_content(&$a) { @@ -10,6 +11,10 @@ function suggest_content(&$a) { return; } + $a->page['aside'] .= follow_widget(); + $a->page['aside'] .= findpeople_widget(); + + $o .= '<h2>' . t('Friend Suggestions') . '</h2>'; |