]> git.mxchange.org Git - friendica.git/commitdiff
Code standards
authorMichael <heluecht@pirati.ca>
Wed, 22 Apr 2020 15:22:39 +0000 (15:22 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 22 Apr 2020 15:22:39 +0000 (15:22 +0000)
include/items.php
src/Model/UserItem.php

index 2d7330858238179754f6947cc7ba1c6b79d15a61..582fbb0933313ca180eae83b4a27029900a0e0e1 100644 (file)
@@ -144,7 +144,7 @@ function query_page_info($url, $photo = "", $keywords = false, $keyword_blacklis
 function add_page_keywords($url, $photo = "", $keywords = false, $keyword_blacklist = "")
 {
        $data = query_page_info($url, $photo, $keywords, $keyword_blacklist);
-       if (empty($data['keywords']) || !is_array($data['keywords'])) {
+       if (empty($data["keywords"]) || !is_array($data["keywords"])) {
                return '';
        }
 
@@ -166,7 +166,7 @@ function add_page_keywords($url, $photo = "", $keywords = false, $keyword_blackl
 function get_page_keywords($url, $photo = "", $keywords = false, $keyword_blacklist = "")
 {
        $data = query_page_info($url, $photo, $keywords, $keyword_blacklist);
-       if (empty($data['keywords']) || !is_array($data['keywords'])) {
+       if (empty($data["keywords"]) || !is_array($data["keywords"])) {
                return [];
        }
 
index d38ed6d55e8d3518b95fb6081e8c86db3718b1d3..6a228c098aea8ed420a8d532568ffdcc7a120306 100644 (file)
@@ -207,7 +207,7 @@ class UserItem
                }
 
                // Or the contact is a mentioned forum
-               $tags = DBA::select('term', ['url'], ['otype' => term::OBJECT_TYPE_POST, 'oid' => $item['id'], 'type' => Term::MENTION, 'uid' => $uid]);
+               $tags = DBA::select('term', ['url'], ['otype' => Term::OBJECT_TYPE_POST, 'oid' => $item['id'], 'type' => Term::MENTION, 'uid' => $uid]);
                while ($tag = DBA::fetch($tags)) {
                        $condition = ['nurl' => Strings::normaliseLink($tag['url']), 'uid' => $uid, 'notify_new_posts' => true, 'contact-type' => Contact::TYPE_COMMUNITY];
                        if (DBA::exists('contact', $condition)) {