statusnet-friendika post permalink compatibility

This commit is contained in:
Fabio Comuni 2011-11-07 17:39:00 +01:00
parent 4407fc2c5d
commit b070666120
1 changed files with 20 additions and 0 deletions

20
mod/notice.php Normal file
View File

@ -0,0 +1,20 @@
<?php
/* identi.ca -> friendika 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;
}