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