diff options
author | friendica <info@friendica.com> | 2012-05-19 21:53:27 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-19 21:53:27 -0700 |
commit | f16a1199408d167bbc7c52dc408ef02b36808317 (patch) | |
tree | 3eefeaf641e91416fa7b43b9a36b829f28ff1983 /mod | |
parent | c6104fb856cfe282cd56a29d4007903382f960e0 (diff) | |
download | volse-hubzilla-f16a1199408d167bbc7c52dc408ef02b36808317.tar.gz volse-hubzilla-f16a1199408d167bbc7c52dc408ef02b36808317.tar.bz2 volse-hubzilla-f16a1199408d167bbc7c52dc408ef02b36808317.zip |
search with leading @ performs directory search (# for tag search), nothing for text search
Diffstat (limited to 'mod')
-rw-r--r-- | mod/dirfind.php | 3 | ||||
-rw-r--r-- | mod/search.php | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mod/dirfind.php b/mod/dirfind.php index 34c54dd91..5c5d0e933 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -17,6 +17,9 @@ function dirfind_init(&$a) { function dirfind_content(&$a) { $search = notags(trim($_REQUEST['search'])); + + if(strpos($search,'@') === 0) + $search = substr($search,1); $o = ''; diff --git a/mod/search.php b/mod/search.php index 635c87b70..3e6bf68aa 100644 --- a/mod/search.php +++ b/mod/search.php @@ -80,7 +80,7 @@ function search_content(&$a) { $o = '<div id="live-search"></div>' . "\r\n"; - $o .= '<h3>' . t('Search This Site') . '</h3>'; + $o .= '<h3>' . t('Search') . '</h3>'; if(x($a->data,'search')) $search = notags(trim($a->data['search'])); @@ -101,6 +101,10 @@ function search_content(&$a) { $tag = true; $search = substr($search,1); } + if(strpos($search,'@') === 0) { + require_once('mod/dirfind.php'); + return dirfind_content($a); + } if(! $search) return $o; |