aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notice.php
blob: 19cf53189a1476dfb9795026ab9b23139ad0160f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
	/* identi.ca -> friendica items permanent-url compatibility */
	
	function notice_init(&$a){
		$id = $a->argv[1];
		$r = q("SELECT user.nickname FROM user LEFT JOIN item ON item.uid=user.uid WHERE item.id=%d",
				intval($id)
				);
		if (count($r)){
			$nick = $r[0]['nickname'];
			$url = $a->get_baseurl()."/display/$nick/$id";
			goaway($url);
		} else {
			$a->error = 404;
			notice( t('Item not found.') . EOL);

		}
		return;

	}