diff options
Diffstat (limited to 'mod/acl.php')
-rw-r--r-- | mod/acl.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/mod/acl.php b/mod/acl.php index d263569ce..f575db55b 100644 --- a/mod/acl.php +++ b/mod/acl.php @@ -205,26 +205,6 @@ function acl_init(&$a){ else $r = array(); - - if($type == 'm' || $type == 'a' || $type == 'p') { - $x = array(); - $x['query'] = $search; - $x['photos'] = array(); - $x['links'] = array(); - $x['suggestions'] = array(); - $x['data'] = array(); - if(count($r)) { - foreach($r as $g) { - $x['photos'][] = $g['micro']; - $x['links'][] = $g['url']; - $x['suggestions'][] = $g['name']; - $x['data'][] = (($type === 'p') ? '@' . str_replace(' ','_',$g['name']) : $g['id']); - } - } - echo json_encode($x); - killme(); - } - if(count($r)) { foreach($r as $g){ |