Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
/* identi.ca -> friendica items permanent-url compatibility */
|
|
|
|
function notice_init(App $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 (dbm::is_result($r)){
|
|
$nick = $r[0]['nickname'];
|
|
$url = App::get_baseurl()."/display/$nick/$id";
|
|
goaway($url);
|
|
} else {
|
|
$a->error = 404;
|
|
notice( t('Item not found.') . EOL);
|
|
|
|
}
|
|
return;
|
|
|
|
}
|