friendica/mod/randprof.php

17 lines
228 B
PHP
Raw Normal View History

2012-04-11 05:50:31 +02:00
<?php
use Friendica\App;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
function randprof_init(App $a) {
2012-04-11 05:50:31 +02:00
require_once('include/Contact.php');
2012-04-11 05:50:31 +02:00
$x = random_profile();
if ($x) {
2012-04-14 14:07:00 +02:00
goaway(zrl($x));
}
goaway(System::baseUrl() . '/profile');
2012-04-11 05:50:31 +02:00
}