aboutsummaryrefslogtreecommitdiffstats
path: root/include/Contact.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-03-06 00:21:02 -0800
committerfriendica <info@friendica.com>2013-03-06 00:21:02 -0800
commit59ea4e32a0b8bc55249f09c4c0992b0bee221b2a (patch)
tree29dbdaae328564eee38b6bdf07c7c42af1e4de43 /include/Contact.php
parentf74bdda0be78501690d2ac2dc06087d517fd4edd (diff)
downloadvolse-hubzilla-59ea4e32a0b8bc55249f09c4c0992b0bee221b2a.tar.gz
volse-hubzilla-59ea4e32a0b8bc55249f09c4c0992b0bee221b2a.tar.bz2
volse-hubzilla-59ea4e32a0b8bc55249f09c4c0992b0bee221b2a.zip
randprof sorta working
Diffstat (limited to 'include/Contact.php')
-rw-r--r--include/Contact.php4
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 '';
}