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