2012-04-10 23:50:31 -04:00
|
|
|
<?php
|
|
|
|
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2016-12-20 04:58:55 -05:00
|
|
|
function randprof_init(App &$a) {
|
2012-04-10 23:50:31 -04:00
|
|
|
require_once('include/Contact.php');
|
|
|
|
$x = random_profile();
|
|
|
|
if($x)
|
2012-04-14 08:07:00 -04:00
|
|
|
goaway(zrl($x));
|
2016-12-19 08:26:13 -05:00
|
|
|
goaway(App::get_baseurl() . '/profile');
|
2012-04-10 23:50:31 -04:00
|
|
|
}
|