]> git.mxchange.org Git - friendica.git/blobdiff - mod/notice.php
The curl result is an object, not an array
[friendica.git] / mod / notice.php
index 1114b9a5a452ed4eec5a5a70048c4ab8755623c3..b40f0ee69cf5bfd9fef800f27c19181b1a5f011f 100644 (file)
@@ -1,20 +1,24 @@
 <?php
-
-/* identi.ca -> 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 = App::get_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;