blob: dc2e925fe4669622f89e384280afd2242dd69dfe (
plain) (
tree)
|
|
<?php
namespace Zotlabs\Module;
class Randprof extends \Zotlabs\Web\Controller {
function init() {
$x = random_profile();
if($x)
goaway(chanlink_url($x));
/** FIXME this doesn't work at the moment as a fallback */
goaway(z_root() . '/profile');
}
}
|