diff options
author | friendica <info@friendica.com> | 2013-09-14 16:11:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-14 16:11:15 -0700 |
commit | a36cc949a1d4c106cd02ec8386c24bf964369571 (patch) | |
tree | 54bf82a2119702fd128e25741bae69379e32c689 /mod/directory.php | |
parent | 94417eecbae6ca678f402458373406d64efde3d6 (diff) | |
download | volse-hubzilla-a36cc949a1d4c106cd02ec8386c24bf964369571.tar.gz volse-hubzilla-a36cc949a1d4c106cd02ec8386c24bf964369571.tar.bz2 volse-hubzilla-a36cc949a1d4c106cd02ec8386c24bf964369571.zip |
this might fix "find channels" but I can't test the keyword search until this is running on a production site.
Diffstat (limited to 'mod/directory.php')
-rw-r--r-- | mod/directory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/directory.php b/mod/directory.php index b7cdaffe7..823c33cf7 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -70,7 +70,7 @@ function directory_content(&$a) { if($url) { $query = $url . '?f=' ; if($search) - $query .= '&name=' . urlencode($search); + $query .= '&name=' . urlencode($search) . '&keywords=' . urlencode($search); if(strpos($search,'@')) $query .= '&address=' . urlencode($search); |