Example #1
0
function randprof_init(&$a)
{
    require_once 'include/Contact.php';
    $x = random_profile();
    if ($x) {
        goaway(zrl($x));
    }
    goaway($a->get_baseurl() . '/profile');
}
Example #2
0
 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');
 }
Example #3
0
 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');
 }
Example #4
0
function randprof_init(&$a)
{
    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($a->get_baseurl() . '/profile');
}