17 lines
228 B
PHP
17 lines
228 B
PHP
<?php
|
|
|
|
use Friendica\App;
|
|
use Friendica\Core\System;
|
|
|
|
function randprof_init(App $a) {
|
|
require_once('include/Contact.php');
|
|
|
|
$x = random_profile();
|
|
|
|
if ($x) {
|
|
goaway(zrl($x));
|
|
}
|
|
|
|
goaway(System::baseUrl() . '/profile');
|
|
}
|