diff options
author | friendica <info@friendica.com> | 2013-12-09 00:12:44 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-09 00:12:44 -0800 |
commit | 00f4ee271789b61393edd384f12cda1c14af4b94 (patch) | |
tree | e8d3688a8c5e36a2b8868b138fff76aa83a8f1ef /mod/suggest.php | |
parent | 77fd6e71379f78d2abb94f85ce4ad68caa7aa370 (diff) | |
download | volse-hubzilla-00f4ee271789b61393edd384f12cda1c14af4b94.tar.gz volse-hubzilla-00f4ee271789b61393edd384f12cda1c14af4b94.tar.bz2 volse-hubzilla-00f4ee271789b61393edd384f12cda1c14af4b94.zip |
migrate follow widget to comanche and remove obsolete mod/intro.php
Diffstat (limited to 'mod/suggest.php')
-rw-r--r-- | mod/suggest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/suggest.php b/mod/suggest.php index bfa471fa5..baccbd38f 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -2,6 +2,7 @@ require_once('include/socgraph.php'); require_once('include/contact_widgets.php'); +require_once('include/widgets.php'); function suggest_init(&$a) { @@ -20,7 +21,7 @@ function suggest_init(&$a) { function suggest_aside(&$a) { - $a->set_widget('follow', follow_widget()); + $a->set_widget('follow', widget_follow(array())); $a->set_widget('findpeople', findpeople_widget()); } |