diff options
author | friendica <info@friendica.com> | 2013-12-06 21:45:36 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-06 21:45:36 -0800 |
commit | 6d3aebb4838262e4eaebb9c5f39946cd97636b0e (patch) | |
tree | bc6538d8c4dc255b86bdbfc018729f47a4c781a5 | |
parent | f45b06ffa004c6e6920214b64efe18e3cfe2d667 (diff) | |
download | volse-hubzilla-6d3aebb4838262e4eaebb9c5f39946cd97636b0e.tar.gz volse-hubzilla-6d3aebb4838262e4eaebb9c5f39946cd97636b0e.tar.bz2 volse-hubzilla-6d3aebb4838262e4eaebb9c5f39946cd97636b0e.zip |
add suggestions to a couple of other pages
-rw-r--r-- | mod/connections.php | 2 | ||||
-rw-r--r-- | mod/directory.php | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/mod/connections.php b/mod/connections.php index 6b3ed113c..b29e4dde8 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -43,6 +43,8 @@ function connections_aside(&$a) { } $a->set_widget('collections', group_side('connections','group',false,0,((array_key_exists('abook',$a->data)) ? $a->data['abook']['abook_xchan'] : ''))); + + $a->set_widget('suggest',suggest_widget()); $a->set_widget('findpeople',findpeople_widget()); } diff --git a/mod/directory.php b/mod/directory.php index 1f22e9bf8..e6c003099 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -213,6 +213,8 @@ function directory_content(&$a) { if($j['keywords']) { $a->set_widget('dirtagblock',dir_tagblock(z_root() . '/directory',$j['keywords'])); } + $a->set_widget('suggest',suggest_widget()); + // logger('mod_directory: entries: ' . print_r($entries,true), LOGGER_DATA); |