friendica/mod/randprof.php
fabrixxm b202e02fbf Revert "Updated modules to allow for partial overrides without errors"
This reverts commit db949bb802448184bfe5164d8d3dd86ddf51b187.
2016-02-07 15:11:34 +01:00

11 lines
170 B
PHP

<?php
function randprof_init(&$a) {
require_once('include/Contact.php');
$x = random_profile();
if($x)
goaway(zrl($x));
goaway($a->get_baseurl() . '/profile');
}