20043914e6
- Add `use Friendica\App;` wherever needed
16 lines
202 B
PHP
16 lines
202 B
PHP
<?php
|
|
|
|
use Friendica\App;
|
|
|
|
function randprof_init(App $a) {
|
|
require_once('include/Contact.php');
|
|
|
|
$x = random_profile();
|
|
|
|
if ($x) {
|
|
goaway(zrl($x));
|
|
}
|
|
|
|
goaway(App::get_baseurl() . '/profile');
|
|
}
|