]> git.mxchange.org Git - friendica.git/blobdiff - mod/notice.php
Ops, one more left ...
[friendica.git] / mod / notice.php
index 161273b0acd489e2afe80732458f00d7cfc2a65c..133fd22fce242024001ac4015c193998411c9d6f 100644 (file)
@@ -1,20 +1,26 @@
 <?php
-       /* identi.ca -> friendica items permanent-url compatibility */
-       
-       function notice_init(&$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 (dba::is_result($r)){
-                       $nick = $r[0]['nickname'];
-                       $url = $a->get_baseurl()."/display/$nick/$id";
-                       goaway($url);
-               } else {
-                       $a->error = 404;
-                       notice( t('Item not found.') . EOL);
+/**
+ * @file mod/notice.php
+ * GNU Social -> friendica items permanent-url compatibility
+ */
 
-               }
-               return;
+use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Core\System;
+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 (DBA::isResult($r)) {
+               $nick = $r[0]['nickname'];
+               $url = System::baseUrl() . "/display/$nick/$id";
+               goaway($url);
+       } else {
+               $a->error = 404;
+               notice(L10n::t('Item not found.') . EOL);
        }
+
+       return;
+}