diff options
author | friendica <info@friendica.com> | 2013-03-06 00:21:02 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-06 00:21:02 -0800 |
commit | 59ea4e32a0b8bc55249f09c4c0992b0bee221b2a (patch) | |
tree | 29dbdaae328564eee38b6bdf07c7c42af1e4de43 /include | |
parent | f74bdda0be78501690d2ac2dc06087d517fd4edd (diff) | |
download | volse-hubzilla-59ea4e32a0b8bc55249f09c4c0992b0bee221b2a.tar.gz volse-hubzilla-59ea4e32a0b8bc55249f09c4c0992b0bee221b2a.tar.bz2 volse-hubzilla-59ea4e32a0b8bc55249f09c4c0992b0bee221b2a.zip |
randprof sorta working
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 ''; } |