mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
19 lines
309 B
PHP
19 lines
309 B
PHP
|
<?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');
|
||
|
}
|
||
|
|
||
|
}
|