Cleanup /format pre-move
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
<?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);
|
||||
/* identi.ca -> friendica items permanent-url compatibility */
|
||||
|
||||
}
|
||||
return;
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user