friendica/mod/randprof.php

16 lines
237 B
PHP
Raw Normal View History

2012-04-11 03:50:31 +00:00
<?php
use Friendica\App;
2017-08-26 06:04:21 +00:00
use Friendica\Core\System;
2017-12-08 04:21:51 +00:00
use Friendica\Model\GlobalContact;
function randprof_init(App $a) {
2017-12-08 04:21:51 +00:00
$x = GlobalContact::getRandomUrl();
if ($x) {
2012-04-14 12:07:00 +00:00
goaway(zrl($x));
}
goaway(System::baseUrl() . '/profile');
2012-04-11 03:50:31 +00:00
}