]> git.mxchange.org Git - friendica.git/blobdiff - mod/profile.php
Just some more fixed notice
[friendica.git] / mod / profile.php
index 49d6fe261d2b2ca761ca1406c7c958c7de2c8970..6ac7d41fe08047701ba3385b086516a802cd45f0 100644 (file)
@@ -12,6 +12,7 @@ use Friendica\Core\Config;
 use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
 use Friendica\Core\System;
+use Friendica\Database\dba;
 use Friendica\Database\DBM;
 use Friendica\Model\Group;
 use Friendica\Model\Item;
@@ -79,7 +80,7 @@ function profile_init(App $a)
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/" title="' . L10n::t('%s\'s posts', $a->profile['username']) . '"/>' . "\r\n";
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/comments" title="' . L10n::t('%s\'s comments', $a->profile['username']) . '"/>' . "\r\n";
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . $which . '/activity" title="' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\r\n";
-       $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . ($a->path ? '/' . $a->path : ''));
+       $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . ($a->urlpath ? '/' . $a->urlpath : ''));
        $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . System::baseUrl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
        header('Link: <' . System::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
 
@@ -191,10 +192,6 @@ function profile_content(App $a, $update = 0)
 
                $o .= Widget::commonFriendsVisitor($a->profile['profile_uid']);
 
-               if (x($_SESSION, 'new_member') && $is_owner) {
-                       $o .= '<div id="newmember-tips"><a href="newmember"><b>' . L10n::t('Tips for New Members') . '</b></a></div>';
-               }
-
                $commpage = $a->profile['page-flags'] == PAGE_COMMUNITY;
                $commvisitor = $commpage && $remote_contact;
 
@@ -243,17 +240,14 @@ function profile_content(App $a, $update = 0)
 
                $r = q("SELECT distinct(parent) AS `item_id`, `item`.`network` AS `item_network`, `item`.`created`
                        FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
-                       WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND
-                       (`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE . "'
-                       OR item.verb = '" . ACTIVITY_DISLIKE . "' OR item.verb = '" . ACTIVITY_ATTEND . "'
-                       OR item.verb = '" . ACTIVITY_ATTENDNO . "' OR item.verb = '" . ACTIVITY_ATTENDMAYBE . "')
-                       AND `item`.`moderated` = 0
-                       AND `item`.`wall` = 1
+                       AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                       WHERE `item`.`uid` = %d AND `item`.`visible` AND
+                       (NOT `item`.`deleted` OR `item`.`gravity` = %d)
+                       AND NOT `item`.`moderated` AND `item`.`wall`
                        $sql_extra4
                        $sql_extra
                        ORDER BY `item`.`created` DESC",
-                       intval($a->profile['profile_uid'])
+                       intval($a->profile['profile_uid']), intval(GRAVITY_ACTIVITY)
                );
 
                if (!DBM::is_result($r)) {
@@ -289,6 +283,8 @@ function profile_content(App $a, $update = 0)
 
                if (!DBM::is_result($r)) {
                        $sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));
+               } else {
+                       $sql_extra3 = "";
                }
 
                //  check if we serve a mobile device and get the user settings
@@ -339,7 +335,7 @@ function profile_content(App $a, $update = 0)
 
                $condition = ['uid' => $a->profile['profile_uid'], 'parent' => $parents_arr];
                $result = Item::selectForUser($a->profile['profile_uid'], [], $condition);
-               $items = conv_sort(dba::inArray($result), 'created');
+               $items = conv_sort(Item::inArray($result), 'created');
        } else {
                $items = [];
        }