X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnotice.php;h=133fd22fce242024001ac4015c193998411c9d6f;hb=68af56a10e41b7a3cc6e8b6996114a21c4c83081;hp=ff8bed1800afc0e7ba0d6da0f989f5bcbb1e5159;hpb=a0530d1066d7268f1b1ea67bc3c254e9f9fc5ec8;p=friendica.git diff --git a/mod/notice.php b/mod/notice.php index ff8bed1800..133fd22fce 100644 --- a/mod/notice.php +++ b/mod/notice.php @@ -1,21 +1,25 @@ 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\DBA; -function notice_init(App $a) { - +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); } else { $a->error = 404; - notice(t('Item not found.') . EOL); + notice(L10n::t('Item not found.') . EOL); } return;