aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Randprof.php
blob: 86b25c22a9bc64fb86379c665cbcba3e7ad7d4ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
namespace Zotlabs\Module;



class Randprof extends \Zotlabs\Web\Controller {

	function init() {
		require_once('include/Contact.php');
		$x = random_profile();
		if($x)
			goaway(chanlink_url($x));
	
		/** FIXME this doesn't work at the moment as a fallback */
		goaway(z_root() . '/profile');
	}
	
}