diff options
author | Friendika <info@friendika.com> | 2011-02-25 19:56:38 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-25 19:56:38 -0800 |
commit | 597d09de1f1e19e2828c369aaff679e90c9ac7d9 (patch) | |
tree | e8cada9f0b63a19cf62756e67b1d509246aef113 /mod/qsearch.php | |
parent | ee4800a4d3eb3c1f11e1dc33a8d6902cf97c2c1f (diff) | |
download | volse-hubzilla-597d09de1f1e19e2828c369aaff679e90c9ac7d9.tar.gz volse-hubzilla-597d09de1f1e19e2828c369aaff679e90c9ac7d9.tar.bz2 volse-hubzilla-597d09de1f1e19e2828c369aaff679e90c9ac7d9.zip |
handle group results without parsing anything
Diffstat (limited to 'mod/qsearch.php')
-rw-r--r-- | mod/qsearch.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/qsearch.php b/mod/qsearch.php index e61915c75..b55b526ff 100644 --- a/mod/qsearch.php +++ b/mod/qsearch.php @@ -26,7 +26,7 @@ function qsearch_init(&$a) { if(count($r)) { foreach($r as $rr) - $results[] = array( t('Group: ') . $rr['name'],'[group]<' . $rr['id'] . '>',''); + $results[] = array( 0, (int) $rr['id'], $rr['name'], '', ''); } $sql_extra = ((strlen($search)) ? " AND (`name` REGEXP '$search' OR `nick` REGEXP '$search') " : ""); @@ -41,7 +41,7 @@ function qsearch_init(&$a) { if(count($r)) { foreach($r as $rr) - $results[] = array($rr['name'],$rr['url'],$rr['photo']); + $results[] = array( (int) $rr['id'], 0, $rr['name'],$rr['url'],$rr['photo']); } echo str_replace('\\/','/',json_encode((object) $results)); |