diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/acl.php | 3 | ||||
-rw-r--r-- | mod/profile.php | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/mod/acl.php b/mod/acl.php index 51aa7651b..9d13811a7 100644 --- a/mod/acl.php +++ b/mod/acl.php @@ -20,7 +20,6 @@ function acl_init(&$a){ $search = $_REQUEST['query']; } -logger("acl: $search"); if(! (local_user() || $type == 'x')) return ""; @@ -170,7 +169,7 @@ logger("acl: $search"); foreach($r as $g) { $x['photos'][] = $g['micro']; $x['links'][] = $g['url']; - $x['suggestions'][] = $g['name']; + $x['suggestions'][] = (($type === 'x') ? '@' : '') . $g['name']; $x['data'][] = intval($g['id']); } } diff --git a/mod/profile.php b/mod/profile.php index 12b494cfe..6680636a7 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -127,7 +127,7 @@ function profile_content(&$a, $update = 0) { if(x($_GET,'tab')) $tab = notags(trim($_GET['tab'])); -// $o.=profile_tabs($a, $is_owner, $a->profile['nickname']); + $o.=profile_tabs($a, $is_owner, $a->profile['nickname']); if($tab === 'profile') { |