diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Contact.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Contact.php b/include/Contact.php index 6978b45bc..a49cc335f 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -397,8 +397,8 @@ function contact_photo_menu($contact) { function random_profile() { - $r = q("select xchan_url from xchan where xchan_network = 'zot' order by rand() limit 1"); - if($r && count($r)) + $r = q("select xchan_url from xchan where 1 order by rand() limit 1"); + if($r) return $r[0]['xchan_url']; return ''; } |