X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnotice.php;h=b40f0ee69cf5bfd9fef800f27c19181b1a5f011f;hb=5e1ceb57de62e4f2b6af957fa7952eed09c1aedb;hp=95d16f2dd2ca495c341466d672743d7cda436429;hpb=6d3ced63894ebac84851b594e8bf80cc4677f9c5;p=friendica.git diff --git a/mod/notice.php b/mod/notice.php index 95d16f2dd2..b40f0ee69c 100644 --- a/mod/notice.php +++ b/mod/notice.php @@ -1,22 +1,24 @@ friendica items permanent-url compatibility */ +/** + * @file mod/notice.php + * GNU Social -> friendica items permanent-url compatibility + */ use Friendica\App; +use Friendica\Core\L10n; use Friendica\Core\System; -use Friendica\Database\DBM; - -function notice_init(App $a) { +use Friendica\Database\DBA; +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)) { + if (DBA::isResult($r)) { $nick = $r[0]['nickname']; - $url = System::baseUrl() . "/display/$nick/$id"; - goaway($url); + $a->internalRedirect('display/' . $nick . '/' . $id); } else { $a->error = 404; - notice(t('Item not found.') . EOL); + notice(L10n::t('Item not found.') . EOL); } return;