aboutsummaryrefslogtreecommitdiffstats
path: root/mod/acctlink.php
blob: a2365803ac46047e1c1a2497520b21e46f9e0171 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

require_once('include/Scrape.php');

function acctlink_init(&$a) {

	if(x($_GET,'addr')) {
		$addr = trim($_GET['addr']);
		$res = probe_url($addr);
		//logger('acctlink: ' . print_r($res,true));
		if($res['url']) {
			goaway($res['url']);
			killme();
		}
	}
}