X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fnotice.php;h=1a584000c72d86eee8560391b8c6ad910033bdf9;hb=51210af22157327376954721bfdca7161b66a7be;hp=ff8bed1800afc0e7ba0d6da0f989f5bcbb1e5159;hpb=541d6ab8959fe3c069996e230def126c154da34d;p=friendica.git diff --git a/mod/notice.php b/mod/notice.php index ff8bed1800..1a584000c7 100644 --- a/mod/notice.php +++ b/mod/notice.php @@ -1,21 +1,23 @@ friendica items permanent-url compatibility */ +/** + * @file mod/notice.php + * GNU Social -> friendica items permanent-url compatibility + */ use Friendica\App; -use Friendica\Core\System; - -function notice_init(App $a) { +use Friendica\Core\L10n; +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;