aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Randprof.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Module/Randprof.php')
-rw-r--r--Zotlabs/Module/Randprof.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/Zotlabs/Module/Randprof.php b/Zotlabs/Module/Randprof.php
new file mode 100644
index 000000000..86b25c22a
--- /dev/null
+++ b/Zotlabs/Module/Randprof.php
@@ -0,0 +1,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');
+ }
+
+}