randprof sorta working

This commit is contained in:
friendica 2013-03-06 00:21:02 -08:00
parent f74bdda0be
commit 59ea4e32a0
4 changed files with 7 additions and 7 deletions

6
done
View File

@ -66,10 +66,10 @@ include/
= Scrape.php
+ security.php
? session.php
socgraph.php
? socgraph.php
= system_unavailable.php
= template_processor.php
text.php
? text.php
- user.php
+ zot.php
@ -154,7 +154,7 @@ mod/
+ smilies.php
+ starred.php
subthread.php
suggest.php
+ suggest.php
tagger.php
tagrm.php
? uexport.php

View File

@ -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 '';
}

View File

@ -5,6 +5,6 @@ function randprof_init(&$a) {
require_once('include/Contact.php');
$x = random_profile();
if($x)
goaway(zid($x));
goaway(chanlink_url($x));
goaway($a->get_baseurl() . '/profile');
}

View File

@ -1 +1 @@
2013-03-05.243
2013-03-06.244