friendica/mod/randprof.php

21 lines
324 B
PHP
Raw Normal View History

2012-04-10 23:50:31 -04:00
<?php
/**
* @file mod/randprof.php
*/
use Friendica\App;
2017-08-26 02:04:21 -04:00
use Friendica\Core\System;
2018-06-02 04:05:06 -04:00
use Friendica\Model\Contact;
use Friendica\Model\GContact;
use Friendica\Model\Profile;
function randprof_init(App $a)
{
$x = GContact::getRandomUrl();
if ($x) {
$a->redirect(Contact::magicLink($x));
}
$a->redirect('profile');
2012-04-10 23:50:31 -04:00
}