]> git.mxchange.org Git - friendica.git/blobdiff - mod/notice.php
Merge branch 'develop' into rewrites/coding-convention-split2-1-2
[friendica.git] / mod / notice.php
old mode 100755 (executable)
new mode 100644 (file)
index 19cf531..b702939
@@ -1,14 +1,14 @@
 <?php
        /* identi.ca -> friendica items permanent-url compatibility */
-       
-       function notice_init(&$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 (count($r)){
+               if (dbm::is_result($r)){
                        $nick = $r[0]['nickname'];
-                       $url = $a->get_baseurl()."/display/$nick/$id";
+                       $url = App::get_baseurl()."/display/$nick/$id";
                        goaway($url);
                } else {
                        $a->error = 404;