streams/Code/Module/Randprof.php
2022-02-15 20:08:28 -08:00

20 lines
340 B
PHP

<?php
namespace Code\Module;
use Code\Web\Controller;
class Randprof extends Controller
{
public 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');
}
}