0dfa57948f
Replace deprecated functions with new syntax.
18 lines
285 B
PHP
18 lines
285 B
PHP
<?php
|
|
|
|
use Friendica\App;
|
|
use Friendica\Network\Probe;
|
|
|
|
function acctlink_init(App $a) {
|
|
|
|
if(x($_GET,'addr')) {
|
|
$addr = trim($_GET['addr']);
|
|
$res = Probe::uri($addr);
|
|
//logger('acctlink: ' . print_r($res,true));
|
|
if($res['url']) {
|
|
goaway($res['url']);
|
|
killme();
|
|
}
|
|
}
|
|
}
|