1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-09 23:08:27 +00:00
friendica-github/mod/randprof.php
2017-12-07 23:57:56 -05:00

15 lines
227 B
PHP

<?php
use Friendica\App;
use Friendica\Core\System;
use Friendica\Model\GContact;
function randprof_init(App $a) {
$x = GContact::getRandomUrl();
if ($x) {
goaway(zrl($x));
}
goaway(System::baseUrl() . '/profile');
}