2012-04-10 20:50:31 -07:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2017-08-26 06:04:21 +00:00
|
|
|
use Friendica\Core\System;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2017-01-09 23:14:55 +11:00
|
|
|
function randprof_init(App $a) {
|
2012-04-10 20:50:31 -07:00
|
|
|
require_once('include/Contact.php');
|
2016-12-20 11:38:16 +01:00
|
|
|
|
2012-04-10 20:50:31 -07:00
|
|
|
$x = random_profile();
|
2016-12-20 11:38:16 +01:00
|
|
|
|
|
|
|
if ($x) {
|
2012-04-14 05:07:00 -07:00
|
|
|
goaway(zrl($x));
|
2016-12-20 11:38:16 +01:00
|
|
|
}
|
|
|
|
|
2017-08-26 07:32:10 +00:00
|
|
|
goaway(System::baseUrl() . '/profile');
|
2012-04-10 20:50:31 -07:00
|
|
|
}
|