2012-04-11 03:50:31 +00:00
|
|
|
<?php
|
|
|
|
|
2016-02-05 20:52:39 +00:00
|
|
|
if(! function_exists('randprof_init')) {
|
2012-04-11 03:50:31 +00:00
|
|
|
function randprof_init(&$a) {
|
|
|
|
require_once('include/Contact.php');
|
|
|
|
$x = random_profile();
|
|
|
|
if($x)
|
2012-04-14 12:07:00 +00:00
|
|
|
goaway(zrl($x));
|
2012-04-11 03:50:31 +00:00
|
|
|
goaway($a->get_baseurl() . '/profile');
|
|
|
|
}
|
2016-02-05 20:52:39 +00:00
|
|
|
}
|