diff options
author | Friendika <info@friendika.com> | 2010-12-12 18:43:32 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-12 18:43:32 -0800 |
commit | 57eb0576b018902d020bbf17e5b38a4ed7c440fd (patch) | |
tree | 4dc09767b42aebde2c8b465a2815184ddfdd23d5 /mod/search.php | |
parent | 1cffecd1bed6856dd40eddd8b0e6cd870d287762 (diff) | |
download | volse-hubzilla-57eb0576b018902d020bbf17e5b38a4ed7c440fd.tar.gz volse-hubzilla-57eb0576b018902d020bbf17e5b38a4ed7c440fd.tar.bz2 volse-hubzilla-57eb0576b018902d020bbf17e5b38a4ed7c440fd.zip |
make both content and people search POSTable
Diffstat (limited to 'mod/search.php')
-rw-r--r-- | mod/search.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/mod/search.php b/mod/search.php index 78a4a3d53..7605e9ae2 100644 --- a/mod/search.php +++ b/mod/search.php @@ -1,13 +1,22 @@ <?php +function search_post(&$a) { + if(x($_POST,'search')) + $a->data['search'] = $_POST['search']; +} + + function search_content(&$a) { $o = '<div id="live-search"></div>' . "\r\n"; $o .= '<h3>' . t('Search') . '</h3>'; - $search = ((x($_GET,'search')) ? rawurldecode($_GET['search']) : ''); + if(x($a->data,'search')) + $search = notags(trim($a->data['search'])); + else + $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : ''); $o .= search($search); |