diff options
author | friendica <info@friendica.com> | 2013-12-08 20:08:50 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-08 20:08:50 -0800 |
commit | 082ac6777829c98ded48c271f4210ac5d6e1a68f (patch) | |
tree | 664a2ee7f0451640dac4d2672e40e3cfe044fcfb /mod/directory.php | |
parent | 8959487f1c7e5b785df2f8e7658da8b2534b2ad9 (diff) | |
download | volse-hubzilla-082ac6777829c98ded48c271f4210ac5d6e1a68f.tar.gz volse-hubzilla-082ac6777829c98ded48c271f4210ac5d6e1a68f.tar.bz2 volse-hubzilla-082ac6777829c98ded48c271f4210ac5d6e1a68f.zip |
suggestion widget tweaked to make it comanche capable. Remove old versions of specs that are so obsolete it isn't funny. Zot protocol reference is in red's github wiki, and in the code. We should move the github copy to /doc once it is updated to match the code. There's no point in documenting dfrn in the red code base.
Diffstat (limited to 'mod/directory.php')
-rw-r--r-- | mod/directory.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/directory.php b/mod/directory.php index e6c003099..616035339 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -1,6 +1,7 @@ <?php require_once('include/dir_fns.php'); +require_once('include/widgets.php'); function directory_init(&$a) { @@ -213,7 +214,7 @@ function directory_content(&$a) { if($j['keywords']) { $a->set_widget('dirtagblock',dir_tagblock(z_root() . '/directory',$j['keywords'])); } - $a->set_widget('suggest',suggest_widget()); + $a->set_widget('suggest',widget_suggestions(array())); // logger('mod_directory: entries: ' . print_r($entries,true), LOGGER_DATA); |